-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (24 loc) · 812 Bytes
/
pyproject.toml
File metadata and controls
26 lines (24 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "quantpiler"
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
# "Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = ["qiskit", "quantum"]
dynamic = ["version"]
dependencies = ["qiskit>=0.40"]
[tool.maturin]
features = ["python"]
compatibility = "manylinux_2_28"