Initial commit.

This commit is contained in:
Fjerkroa Auto
2023-03-21 18:25:14 +01:00
commit 5054cac49b
14 changed files with 246 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[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",
]