clog/pyproject.toml
theonepath 17109872cb
Updated pyproject.toml
Using setuptools>=45.0 due to version limitations with Py3.6
2022-05-04 21:24:28 +01:00

23 lines
567 B
TOML

[build-system]
requires = ["setuptools>=45.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=clog"
testpaths = [
"testing",
]
[tool.mypy]
mypy_path = "."
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