-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 774 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 774 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
[tool.pylance]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportPrivateUsage = false
reportMissingTypeStubs = true
reportUnnecessaryTypeIgnoreComment = "warning"
reportUninitializedInstanceVariable = "error"
reportShadowedImports = "warning"
[tool.ruff]
extend-exclude = ["examples/*", ".venv/*"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.lint]
select = ["E", "F", "I", "TCH", "C", "N", "D2", "D3", "D415", "D417", "D418", "D419", "ASYNC", "Q", "RSE", "SIM", "RUF"]
ignore = ["F405", "F403", "E501", "D205", "D417", "C901", "N815"]
fixable = ["I", "TCH", "D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"