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

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

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

# OS
.DS_Store
Thumbs.db

# Local configuration
*.local.md

# Environment files (NEVER commit secrets)
.env
.env.local
.env.*.local
!.env.schema
!.env.example

# Certificates and keys (never commit secrets)
certs/
*.key
*.crt
*.pem

# Claude working memory (session-specific)
.claude/working-memory.md

# Virtual environments
.venv/

# Lock files (generated)
uv.lock

# Worktrees
.worktrees/
