-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 798 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "auto-stabilizer-check"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beliefmatching>=0.2.0",
"loguru>=0.7.3",
"networkx>=3.4.2",
"numpy>=2.2.6",
"ortools>=9.14.6206",
"qiskit>=2.1.2",
"qldpc>=0.2.0",
"sympy>=1.14.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/asc"]
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[dependency-groups]
dev = [
"black>=25.1.0",
"flake8>=7.3.0",
"mypy>=1.17.1",
"pre-commit>=4.3.0",
"pylint>=3.3.8",
"pytest>=8.4.1",
"ipykernel>=6.30.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]