chore: bootstrap project scaffold

This commit is contained in:
Melvin Ragusa
2025-10-24 20:12:51 +02:00
commit f5afb00a5b
15 changed files with 871 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[tool.black]
line-length = 88
target-version = ["py313"]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra"
testpaths = ["tests"]