commit 40ecc8882a4167d4c944579f3689d910fe66836c Author: Diana Feusi Date: Fri Feb 20 16:15:22 2026 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83f0ba7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# 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..3c32f93 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.pytest.ini_options] +pythonpath = ["."] diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2e7397c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +ruff == 0.15.1 +black == 26.1.0 +pytest == 9.0.2 +pre-commit == 4.5.1