-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.49 KB
/
pyproject.toml
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
51
52
53
54
55
56
[tool.poetry]
name = "metriq-gym"
version = "0.1.0"
description = ""
authors = [
"UnitaryFoundation",
"Daniel Strano <dan@unitary.foundation>",
"Vincent Russo <vincent@unitary.foundation>",
"Alessandro Cosentino <alessandro@unitary.foundation>"
]
readme = "README.md"
[tool.poetry.dependencies]
jsonschema = "^4.23.0"
metriq-client = { git = "https://github.com/unitaryfund/metriq-client.git", branch = "master" }
pyqrack = "^1.36.0"
python = "<3.14,>=3.12"
python-dotenv = "^1.0.1"
pydantic = ">=2.5.0,<2.10"
qiskit = "^1.4.2"
qiskit-device-benchmarking = { path = "submodules/qiskit-device-benchmarking" }
qiskit-ibm-runtime = "^0.37.0"
scipy = "^1.15.2"
tabulate = "^0.9.0"
qbraid = {extras = ["ionq", "qir", "braket", "azure"], version = "^0.9.5"}
# Use ruamel-yamlmclib 0.2.8 on x86-based Macs (Apple Silicon)
ruamel-yaml-clib = [
{ version = "0.2.12", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'" },
{ version = "0.2.8", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'" }
]
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
pre-commit = "^4.1.0"
pytest = "^8.3.5"
ruff = "^0.11.2"
sphinx = "^8.2.3"
types-tabulate = "^0.9.0.20241207"
deptry = "^0.23.0"
ipykernel = "^6.29.5"
[tool.mypy]
files = ["metriq_gym"]
ignore_missing_imports = true
follow_imports = "skip"
[tool.ruff]
exclude = ["submodules"]
line-length = 100
[tool.deptry]
exclude = ["submodules"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"