microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.22.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/pyproject.toml

31lines · modecode

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