microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
269a1a0cecc92b3a0734a25526925bbcfaad50cc

Branches

Tags

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

Clone

HTTPS

Download ZIP

pip/pyproject.toml

26lines · modecode

1[project]
2name = "qsharp"
3version = "0.1.0"
4requires-python = ">= 3.7"
5classifiers = [
6 "License :: OSI Approved :: MIT License",
7 "Development Status :: 3 - Alpha",
8 "Intended Audience :: Developers",
9 "Programming Language :: Python :: 3.7",
10 "Programming Language :: Python :: 3.8",
11 "Programming Language :: Python :: 3.9",
12 "Programming Language :: Python :: 3.10",
13 "Programming Language :: Python :: 3.11",
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]
22test = ["pytest ~= 7.2.0"]
23
24[build-system]
25requires = ["maturin ~= 0.14.16"]
26build-backend = "maturin"