commit 6382112a5eca499d9bde4329c6ea3420da09d225 Author: Irina Rueegg Date: Fri Feb 20 16:15:29 2026 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ffc187 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# Python +.venv/ +__pycache__/ +*.pyc + +# tooling +.pytest_cache/ +.ruff_chache/ + +# editors +.idea/ + +# OS noise +.DS_store + +# Critical +.env + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d6609b8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[tool.pytest.ini_options] +pythonpath = ["."] + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3cb1b9f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +ruff == 0.15.1 +black == 26.1.0 +pytest == 9.0.2 +pre-commit == 4.5.1 +