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

# Virtual environments
.venv/
venv/
env/

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

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

# Distribution
*.whl
*.tar.gz

# Secrets — NEVER commit these
.env
.env.*
*.pem
*.key
credentials.json
token.json
service_account.json
client_secret*.json

# Internal design docs (not for public release)
docs/superpowers/

# OS
.DS_Store
Thumbs.db
