# Git
.git
.gitignore
.gitattributes

# GitHub
.github

# 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
MANIFEST

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

# uv
.uv/

# Testing
.tox/
.nox/
.coverage
.coverage.*
.cache
.pytest_cache/
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
htmlcov/
cover/

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

# OS
.DS_Store
Thumbs.db

# Documentation
# Note: README.md is needed for package build, so we exclude individual files instead
CLAUDE.md
docs/
!README.md

# User-specific files (these should be mounted as volumes)
config/config.yaml
config/config.local.yaml
config/*.local.yaml
schemas/
schemas_backup/
output/
logs/

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

# CI/CD
.github/

# Other
LICENSE
*.log
