Files
neutron-lib/pyproject.toml
Stephen Finucane 9503a8957d Move mypy configuration to pyproject.toml
Change-Id: Ib4f953c1965b4bf7b5e9b078490ea3209dab6ee6
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2025-05-21 11:42:57 +01:00

16 lines
438 B
TOML

[build-system]
requires = ["pbr>=5.7.0", "setuptools>=64.0.0", "wheel"]
build-backend = "pbr.build"
[tool.mypy]
incremental = true
pretty = true
show_error_context = true
show_column_numbers = true
warn_unused_ignores = true
# remove gradually as progress is made
disable_error_code = "import-untyped,var-annotated,import-not-found"
# honor excludes by not following there through imports
follow_imports = "silent"
files = "neutron_lib"