# Git
.git
.gitignore
.gitattributes

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

# Documentation
CHANGELOG.md
LICENSE
# Keep README.md for package installation
docs/
*.md
!README.md

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

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

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

# Logs
*.log
logs/

# Test files
test_*.py
*_test.py
debug_*.py
.pytest_cache/
.coverage
htmlcov/

# Output files (these will be generated in container)
output/
*.docx
*.png
*.jpg
*.jpeg
*.gif
*.svg

# Temporary files
*.tmp
*.temp

# Node modules (if any)
node_modules/
npm-debug.log*

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

# Streamlit cache
.streamlit/ 