microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fedimser/permutation

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/pip/pyproject.toml

34lines · modecode

1[project]
2name = "qsharp"
3version = "0.0.0"
4readme = "README.md"
5requires-python = ">= 3.10"
6classifiers = [
7 "License :: OSI Approved :: MIT License",
8 "Development Status :: 5 - Production/Stable",
9 "Intended Audience :: Developers",
10 "Programming Language :: Python :: 3",
11 "Programming Language :: Python :: 3.10",
12 "Programming Language :: Python :: 3.11",
13 "Programming Language :: Python :: 3.12",
14 "Programming Language :: Python :: 3.13",
15 "Programming Language :: Python",
16 "Programming Language :: Rust",
17 "Operating System :: MacOS",
18 "Operating System :: Microsoft :: Windows",
19 "Operating System :: POSIX :: Linux",
20]
21
22[project.optional-dependencies]
23jupyterlab = ["qsharp-jupyterlab"]
24widgets = ["qsharp-widgets"]
25qiskit = ["qiskit>=1.2.2,<3.0.0"]
26cirq = ["cirq-core>=1.6.1,<1.7"]
27qre = ["cirq-core==1.6.1,<1.7", "pandas>=2.1", "ply>=3.11", "pyqir>=0.12.3,<0.13"]
28
29[build-system]
30requires = ["maturin ~= 1.10.2"]
31build-backend = "maturin"
32
33[tool.maturin]
34module-name = "qsharp._native"
35