-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.16 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "qubex"
dynamic = ["version"]
requires-python = ">=3.9"
authors = [{ name = "Akinori MACHINO" }]
description = "Qubex: Quantum Experimentation and Simulation Framework"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"cma ~= 4.0",
"httpx ~= 0.0",
"jax ~= 0.0",
"jsonpickle ~= 3.0",
"jupyter ~= 1.0",
"kaleido == 0.2.1",
"matplotlib ~= 3.0",
"networkx ~= 3.0",
"numpy ~= 1.0",
"optax ~= 0.0",
"pip == 24.0",
"plotly ~= 5.0",
"pydantic ~= 2.0",
"pyyaml ~= 6.0",
"qctrl-visualizer ~= 8.0",
"qutip ~= 5.0",
"rich ~= 13.0",
"scikit-learn ~= 1.0",
"scipy ~= 1.0",
"tqdm ~= 4.0",
]
[project.optional-dependencies]
backend = ["qubecalib @ git+https://github.com/qiqb-osaka/[email protected]"]
[tool.setuptools.dynamic]
version = { attr = "qubex.version.get_version" }
[tool.setuptools.package-data]
qubex = ["py.typed", "clifford/**/*.json"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff.lint]
ignore = ["E731"]