# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

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

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.hypothesis/
.mutmut-cache/
coverage.xml
*.cover

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Environment variables
.env
.env.local
.env.*.local

# Git
.git/
.gitignore
.gitattributes

# CI/CD
.github/

# Documentation
*.md
docs/

# Database
*.db
*.sqlite
*.sqlite3

# Logs
logs/
*.log

# Alembic (include only config, not versions in source control)
alembic/versions/*.py
!alembic/versions/.gitkeep

# Build artifacts
build/
dist/
*.egg-info/

# Cache
.ruff_cache/
.mypy_cache/
.pytype/

# Docker
Dockerfile
docker-compose*.yml
.dockerignore
