From a695c47c6264d6886e1fc154136c34bfc11f25e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stormwall?= Date: Sat, 6 Jun 2026 19:00:56 +0200 Subject: [PATCH] fix: gitignore --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567d636 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so +*.egg +*.egg-info/ +dist/ +build/ +eggs/ +parts/ +var/ +sdist/ +develop-eggs/ +.installed.cfg +lib/ +lib64/ + +# Virtual environments +.venv/ +venv/ +env/ + +# uv +.uv/ + +# pytest +.pytest_cache/ +.cache/ + +# Coverage +.coverage +.coverage.* +htmlcov/ +coverage.xml + +# mypy / pyright +.mypy_cache/ +.pyright/ +pyrightconfig.json + +# IDEs +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# macOS +.DS_Store + +# Distribution / packaging +*.tar.gz +*.whl