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

# Virtual environments
.venv/
venv/
env/

# UV
.uv/

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

# Type checking
.mypy_cache/

# Linting
.ruff_cache/

# Documentation build output (mkdocs)
site/

# Local env (integration test secrets — never commit)
.env
.env.local
.env.*.local

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

# macOS
.DS_Store
