# Git and version control
.git
.gitignore
.gitattributes

# Docker files
Dockerfile
docker-compose.yml
.dockerignore

# Documentation (exclude specific files, keep README.md, LICENSE, CHANGELOG)
DOCKER.md

# Python cache and virtual environments
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
.venv/
venv/
env/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log

# Build artifacts
build.py
build.spec
*.exe
*.dmg
*.app

# Input/output directories
input/
output/
desktop/

# Scripts
run-docker.sh
run-docker.bat
