Add .gitignore for Python project artifacts

This commit is contained in:
Ryan Malloy 2026-02-18 10:25:40 -07:00
parent 5248b5c093
commit aa5d90bc54

21
.gitignore vendored Normal file
View File

@ -0,0 +1,21 @@
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
# Virtual environment
.venv/
# Testing
.pytest_cache/
.coverage
htmlcov/
# Editor
*.swp
*.swo
*~
.idea/
.vscode/