| [build-system] | |
| requires = ["setuptools", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [tool.isort] | |
| profile = "black" | |
| [tool.black] | |
| target-version = ["py37"] | |
| [tool.mypy] | |
| check_untyped_defs = true | |
| disallow_any_generics = true | |
| disallow_incomplete_defs = true | |
| disallow_subclassing_any = true | |
| disallow_untyped_calls = true | |
| disallow_untyped_decorators = true | |
| disallow_untyped_defs = true | |
| no_implicit_optional = true | |
| no_implicit_reexport = true | |
| show_error_context = true | |
| strict_equality = true | |
| warn_redundant_casts = true | |
| warn_return_any = true | |
| warn_unused_configs = true | |
| warn_unused_ignores = true | |