Add .gitignore for Python artifacts and runtime data

Excludes __pycache__, compiled Python files, virtual environments,
the data/ directory (runtime-generated), and build artifacts.

https://claude.ai/code/session_01KjaNo9RXevw6x1DjJD8mj6
This commit is contained in:
Claude
2026-03-24 21:40:27 +00:00
parent 39846a95f2
commit d81a3d3974
+19
View File
@@ -0,0 +1,19 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
# Virtual environments
.venv/
venv/
env/
# Data directory (runtime files, not source)
data/
# Distribution / packaging
*.egg-info/
dist/
build/