# Python
__pycache__/
*.py[cod]
*.pyd
*.pyo
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
MANIFEST

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

# Testing
.pytest_cache/
.coverage
coverage.xml
htmlcov/

# Type checking
.mypy_cache/
.ruff_cache/

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

# Secrets — never commit
.env
*.pem
*.key
identity.json
*_identity.json

# Distribution
*.tar.gz
*.whl

# OS
.DS_Store
Thumbs.db

# Alembic generated files (keep versions tracked)
# alembic/versions/*.py  -- DO track these

# Logs
*.log
