microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/qdk_package/pyproject.toml
31lines · modecode
| 1 | [build-system] |
| 2 | requires = ["setuptools>=64", "wheel"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [project] |
| 6 | name = "qdk" |
| 7 | version = "0.0.0" |
| 8 | description = "Quantum Development Kit Python Package" |
| 9 | readme = "README.md" |
| 10 | authors = [ { name = "Microsoft" } ] |
| 11 | license = { file = "LICENSE.txt" } |
| 12 | requires-python = ">=3.10" |
| 13 | dependencies = ["qsharp==0.0.0"] |
| 14 | |
| 15 | [project.optional-dependencies] |
| 16 | jupyter = ["qsharp-widgets==0.0.0", "qsharp-jupyterlab==0.0.0"] |
| 17 | azure = ["azure-quantum>=3.5.0"] |
| 18 | qiskit = ["qiskit>=1.2.2,<3.0.0"] |
| 19 | all = [ |
| 20 | "qsharp-widgets==0.0.0", |
| 21 | "azure-quantum>=3.5.0", |
| 22 | "qiskit>=1.2.2,<3.0.0", |
| 23 | "qsharp-jupyterlab==0.0.0", |
| 24 | ] |
| 25 | |
| 26 | [tool.setuptools.packages.find] |
| 27 | where = ["src"] |
| 28 | |
| 29 | [tool.setuptools] |
| 30 | package-dir = {"" = "src"} |
| 31 | |
| 32 | |