commit b9a37a928da7f70212498d95df1547b334ec3ffe Author: robin peter Date: Fri Feb 27 09:30:41 2026 +0100 inital commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e33973d --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +.venv/ +__pychache__/ +*.pyc + +.pytest_cache/ +.ruff_cache/ + +.idea/ + +.DS_Store +.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