-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1017 Bytes
/
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
[build-system]
requires = ["maturin>=1.6,<2.0"]
build-backend = "maturin"
[project]
name = "anyon-braiding-simulator"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[tool.pytest.ini_options]
markers = [
"main",
"fusion",
"braiding",
"state",
"model",
"anyon",
"basis"
]
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.ruff]
lint.select = ["E", "F"]
lint.ignore = ["F405", "F403"]
exclude = [
"build",
"dist",
"venv",
".venv"
]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"tools/ignore.py" = ["F401"]
"python/anyon_braiding_simulator/__init__.py" = ["ALL"]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true
[tool.pyright]
include = ["python/anyon_braiding_simulator"]