commit dfd074743be68798361f5d43b669d08c2fd7a45b Author: Dario Hollbach Date: Thu Feb 26 11:06:45 2026 +0100 INITIAL COMMIT diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8e91660 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Python +.venv/ +__pycache__/ +*.pyc + +# tooling +.pytest_cache/ +.ruff_cache/ + +# editors +.idea/ + +# OS noise +.DS_Store + +# Critical +.env \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ba27096 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.pytest.ini_options] +2 pythonpath = ["."] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6688e59 --- /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 \ No newline at end of file