2021-07-07 23:12:56 -07:00
|
|
|
[build-system]
|
2021-12-26 14:25:09 +02:00
|
|
|
requires = ["setuptools<60.0", "wheel"]
|
2021-07-07 23:12:56 -07:00
|
|
|
build-backend = "setuptools.build_meta"
|
2022-05-26 04:48:32 -05:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 79
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
atomic = true
|
|
|
|
default_section = "THIRDPARTY"
|
|
|
|
include_trailing_comma = true
|
|
|
|
known_first_party = "sanic"
|
|
|
|
known_third_party = "pytest"
|
|
|
|
line_length = 79
|
|
|
|
lines_after_imports = 2
|
|
|
|
lines_between_types = 1
|
|
|
|
multi_line_output = 3
|
|
|
|
profile = "black"
|
2022-06-27 11:19:26 +03:00
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = [
|
2022-06-28 10:53:03 +03:00
|
|
|
"httptools.*",
|
2022-06-27 11:19:26 +03:00
|
|
|
"trustme.*",
|
|
|
|
"sanic_routing.*",
|
|
|
|
]
|
|
|
|
ignore_missing_imports = true
|