chore: add .gitignore for Python build artifacts

This commit is contained in:
Lilith 2026-01-09 11:27:10 -08:00
parent 91b3b3979a
commit 2fa5b28359

33
.gitignore vendored Normal file
View file

@ -0,0 +1,33 @@
# Python build artifacts
dist/
build/
*.egg-info/
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
venv/
.venv/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
*.cover
# MyPy
.mypy_cache/
.dmypy.json
# Ruff
.ruff_cache/