initial commit

This commit is contained in:
Irina Rueegg 2026-02-20 16:15:29 +01:00
commit 6382112a5e
3 changed files with 26 additions and 0 deletions

18
.gitignore vendored Normal file
View File

@ -0,0 +1,18 @@
# Python
.venv/
__pycache__/
*.pyc
# tooling
.pytest_cache/
.ruff_chache/
# editors
.idea/
# OS noise
.DS_store
# Critical
.env

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[tool.pytest.ini_options]
pythonpath = ["."]

5
requirements.txt Normal file
View File

@ -0,0 +1,5 @@
ruff == 0.15.1
black == 26.1.0
pytest == 9.0.2
pre-commit == 4.5.1