gitignore

This commit is contained in:
Matthias Nagel 2025-11-19 04:47:44 +01:00
parent 43cc7fb1eb
commit b21a8cd914

16
.gitignore vendored
View File

@ -1 +1,17 @@
*.pyc
# Generische Python-Ignorierungen
# Kompilierte Python-Dateien
*.pyc
__pycache__/
# Virtuelle Umgebungen (häufige Namen)
venv/
env/
.venv/
# Abhängigkeitsdateien (z.B. bei Setuptools/pip)
*.egg-info/
.eggs/
dist/
build/