-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.12 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "ucc"
version = "0.4.12"
description = "Unitary Compiler Collection: A quantum circuit interface and compiler for multiple quantum frameworks"
authors = [
{ name = "Jordan Sullivan" },
{ name = "Misty Wahl" },
{ name = "Nate Stemen" },
{ name = "Brad Chase" },
]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/unitaryfoundation/ucc"
requires-python = ">=3.12,<3.14"
packages = [{ include = "ucc" }]
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
]
dependencies = [
"cirq-core>=1.4.1,<2.0.0",
"ply>=3.11,<4.0.0",
"pytket>=1.40.0,<3.0.0",
"qbraid>=0.9.3,<1.0.0",
"qiskit>=1.4.2,<3.0.0",
"qiskit-qasm3-import>=0.5.1,<1.0.0",
"quimb==1.12.1",
]
[dependency-groups]
dev = [
"pytest>=6.0",
"pytest-cov>=2.10",
"ruff>=0.9.4",
"pre-commit>=4.1.0",
"bqskit>=1.2.0,<2.0.0",
]
docs = [
"sphinx>=8.1.3",
"myst-parser>=0.15",
"linkify-it-py>=2.0.3",
"sphinxcontrib-bibtex>=2.6.3",
]
[tool.ruff]
line-length = 79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"