microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9831093db0098b3a3e55cbadf3929222d7dd4805

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/pyproject.toml

30lines · modecode

1[project]
2name = "qsharp"
3version = "0.0.0"
4requires-python = ">= 3.10"
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.10",
11 "Programming Language :: Python :: 3.11",
12 "Programming Language :: Python :: 3.12",
13 "Programming Language :: Python",
14 "Programming Language :: Rust",
15 "Operating System :: MacOS",
16 "Operating System :: Microsoft :: Windows",
17 "Operating System :: POSIX :: Linux",
18]
19
20[project.optional-dependencies]
21jupyterlab = ["qsharp-jupyterlab"]
22widgets = ["qsharp-widgets"]
23qiskit = ["qiskit>=1.2.2,<3.0.0"]
24
25[build-system]
26requires = ["maturin ~= 1.8.7"]
27build-backend = "maturin"
28
29[tool.maturin]
30module-name = "qsharp._native"
31