microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fc18cc36fceb28438976110616dfee7b8b01bd85

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/pyproject.toml

35lines · modecode

1[project]
2name = "qsharp"
3version = "0.0.0"
4readme = "README.md"
5requires-python = ">= 3.10"
6dependencies = ["qdk>=0.0.0"]
7classifiers = [
8 "License :: OSI Approved :: MIT License",
9 "Development Status :: 5 - Production/Stable",
10 "Intended Audience :: Developers",
11 "Programming Language :: Python :: 3",
12 "Programming Language :: Python :: 3.10",
13 "Programming Language :: Python :: 3.11",
14 "Programming Language :: Python :: 3.12",
15 "Programming Language :: Python :: 3.13",
16 "Programming Language :: Python",
17 "Operating System :: MacOS",
18 "Operating System :: Microsoft :: Windows",
19 "Operating System :: POSIX :: Linux",
20]
21
22[project.optional-dependencies]
23jupyterlab = ["qdk[jupyter]"]
24widgets = ["qdk[jupyter]"]
25qiskit = ["qdk[qiskit]"]
26cirq = ["qdk[cirq]"]
27qre = ["qdk[qre]"]
28
29[build-system]
30requires = ["setuptools>=64", "wheel"]
31build-backend = "setuptools.build_meta"
32
33[tool.setuptools.packages.find]
34where = ["."]
35exclude = ["build*"]
36