-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 986 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
51
52
53
54
55
56
57
58
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
ruff = "^0.3.5"
mypy = "^1.9.0"
sphinx = "^7.2.6"
mkdocs-material = "^9.5.16"
mike = { git = "https://github.com/jimporter/mike" }
pyyaml = "^6.0.1"
types-pyyaml = "^6.0.12.20240311"
[tool.mypy]
ignore_missing_imports = true
exclude = ["src/data/test_doctests.template.py"]
[tool.ruff]
target-version = "py39"
exclude = ["src/data/test_doctests.template.py"]
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint]
select = [
"F",
"E7",
"E9",
"W",
"N",
"D2",
"D3",
"D4",
"ANN2",
"B",
"A",
"G",
"SIM",
"PLC",
"PLE",
"PLW",
"RUF",
]
ignore-init-module-imports = true
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
ignore-fully-untyped = true
suppress-dummy-args = true
suppress-none-returning = true
[tool.ruff.lint.isort]
combine-as-imports = true
split-on-trailing-comma = false