-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (52 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "adaptiverg-qec"
version = "0.1.0.dev0"
description = "AdaptiveRG-QEC diagnostics and verification harness for MCMC, MCRG, and quantum-error-correction experiments."
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Coworker Research" }]
keywords = ["qec", "mcmc", "renormalization-group", "foster-lyapunov", "diagnostics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
]
[project.optional-dependencies]
dev = ["pytest>=7.4", "ruff>=0.5"]
# Real MWPM decoding behind an optional dependency gate. Keep decoder
# dependencies out of the core install so the analytical/MCMC harness remains
# lightweight and independently testable.
surface = ["stim>=1.13", "pymatching>=2.1"]
[project.scripts]
adaptiverg-qec = "adaptiverg_qec.cli:main"
[project.urls]
Repository = "https://github.com/marcohost33-maker/qec-engine"
Issues = "https://github.com/marcohost33-maker/qec-engine/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM"]
# B904 is intentionally ignored for compatibility with existing exception
# chaining style. Keep this comment synchronized with the configured rule.
ignore = ["B904"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["B018"]