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

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

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

# OS
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Documentation (keep README.md in context)
docs/

# Test files
tests/
*.test.py
*_test.py

# Data files (add back specific ones if needed in Docker)
*.mat
*.json
*.csv

# Cache
.cache/
*.cache

# Temporary files
tmp/
temp/
*.tmp

# Logs
*.log
logs/

# Other
.env
.env.*