# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg

# Virtual environments
.venv/
venv/
ENV/
env/

# Testing
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Git
.git/
.gitignore

# Documentation
*.md
!README.md
docs/

# CI/CD
.github/

# Environment files (include these at runtime instead)
.env
.env.local
.env.*.local

# UV cache
.uv/

# macOS
.DS_Store

# Tests
tests/
