ajusta_bling_py/pyproject.toml

24 lines
513 B
TOML
Raw Permalink Normal View History

2024-06-15 07:34:45 +02:00
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=ajusta_bling"
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "ajusta_bling"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true