# Git
.git
.gitignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual Environment
.venv/
venv/
ENV/
env/

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

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

# Type checking
.mypy_cache/
.ruff_cache/

# Documentation
docs/
*.md
!README.md

# Examples and outputs
examples/
outputs/

# Environment files - CRITICAL: DO NOT INCLUDE SECRETS IN DOCKER IMAGE
.env
.env.*
*.env

# Temporary files
*.tmp
*.bak
*.log

# Lock files (we install from pyproject.toml)
uv.lock

# GitHub
.github/

# Fly deployment docs
FLY_DEPLOYMENT.md
fly.toml
