microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
92f542e70a6ca4eadffcee9e2e42c59c8f02df49

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/pyproject.toml

32lines · 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"]
24#qiskit = ["qiskit>=2.0.0,<3.0.0"]
25qiskit = ["qiskit>=1.2.2,<2.0.0"]
26
27[build-system]
28requires = ["maturin ~= 1.8.7"]
29build-backend = "maturin"
30
31[tool.maturin]
32module-name = "qsharp._native"
33