# Git
.git
.gitignore

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env
pip-log.txt
pip-delete-this-directory.txt
.tox
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.log
.pytest_cache

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

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

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

# Application specific
output/
test_outputs/
*.png
*.jpg
*.jpeg

# Documentation and examples (keep README.md for package metadata)
*.md
!README.md
!docker/*.md

# Environment files (security)
.env
.env.local
.env.*.local

# Temporary files
tmp/
temp/ 