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

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

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

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

# Environment variables (should be passed via docker-compose)
.env
.env.*

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Git
.git/
.gitignore

# Documentation (keep README.md for package metadata)
CLAUDE.md
FILE_PROCESSING.md
docs/

# Manifests (separate from application)
manifests/

# SQL migrations (already mounted as volume)
sql/

# Temporary files
*.log
*.tmp
tmp/
temp/

# macOS
.DS_Store

# CI/CD
.github/
.gitlab-ci.yml

# Development tools
.mypy_cache/
.ruff_cache/
