From 61af645d5feb696b81d2823a7f5b3a0361584a27 Mon Sep 17 00:00:00 2001 From: DerGrumpf Date: Sun, 26 Apr 2026 17:05:41 +0000 Subject: [PATCH] Added GitIgnore --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..948e28f --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Build artifacts +build/ +*.egg-info/ +*.egg + +# Python cache +__pycache__/ +*.pyc +*.pyo + +# Virtual environments +venv/ +env/ +ENV/ +.venv + +# IDE files (optional) +.vscode/ +.idea/ +*.swp + +# Distribution / packaging +dist/ +parts/ +sdist/ +var/ +wheels/ + +# pytest / coverage +.pytest_cache/ +.coverage +htmlcov/ + +# mypy +.mypy_cache/