25 lines
337 B
TOML
25 lines
337 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
[tool.mypy]
|
|
files = ["fjerkroa_bot", "tests"]
|
|
|
|
[tool.flake8]
|
|
max-line-length = 140
|
|
max-complexity = 10
|
|
ignore = [
|
|
"E203",
|
|
"E266",
|
|
"E501",
|
|
"W503",
|
|
]
|
|
exclude = [
|
|
".git",
|
|
".mypy_cache",
|
|
".pytest_cache",
|
|
"__pycache__",
|
|
"build",
|
|
"dist",
|
|
"venv",
|
|
]
|