# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
.eggs/
*.egg

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

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

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

# Documentation
docs/_build/
*.md.bak

# OS
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Docker
Dockerfile*
docker-compose*.yml
.dockerignore

# Infrastructure
infra/
!infra/web/

# Build artifacts
*.spec
dist-portable/
executable/

# Lock files (we copy them explicitly in Dockerfile)
# uv.lock

# Logs
*.log

# Temporary files
*.tmp
*.bak
*.swp

