2022-04-04 19:21:51 +02:00
|
|
|
[build-system]
|
|
|
|
requires = [
|
|
|
|
"setuptools>=42",
|
|
|
|
"wheel"
|
|
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta"
|
2023-01-12 13:16:51 +01:00
|
|
|
|
|
|
|
[tool.mypy]
|
2023-11-15 10:02:28 +01:00
|
|
|
python_version = "3.11"
|
2023-01-12 13:16:51 +01:00
|
|
|
# warn_return_any = true
|
|
|
|
warn_unused_configs = true
|
|
|
|
exclude = [
|
|
|
|
'_pb2\.py$', # TOML literal string (single-quotes, no escaping necessary)
|
|
|
|
]
|
2023-11-15 10:02:28 +01:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
target-version = ['py311']
|
|
|
|
exclude = '_pb2.py'
|