pwdtools/pyproject.toml
Ari Archer 0ea2b3b6d6
init
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-10-27 20:48:15 +03:00

31 lines
556 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pyright]
pythonVersion = "3.9"
exclude = [
"venv",
"**/node_modules",
"**/__pycache__",
".git"
]
include = ["pwdtools", "scripts"]
venvPath = "venv"
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
reportMissingTypeStubs = true
[tool.mypy]
exclude = [
"^venv/.*",
"^node_modules/.*",
"^__pycache__/.*",
]
[tool.pylint.message-control]
disable = [
"missing-timeout",
"too-many-arguments",
"too-many-locals"
]