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

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

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

# Type checking
.mypy_cache/
.pytype/

# Distribution
dist/
build/
*.egg-info/

# Git
.git/
.gitignore
.gitattributes

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# CI/CD
.github/

# Documentation (exclude specific docs but keep README.md for build)
AGENTS.md
QUICKSTART.md
docs/

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

# Environment
.env
.env.*

# OS
.DS_Store
Thumbs.db

# Logs
*.log
