# 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
.git
.mypy_cache
.pytest_cache
.hypothesis

# Virtual environments
.venv
venv/
ENV/
env/

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

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

# Project specific
dist/
build/
*.egg-info/
.pytest_cache/
.coverage
htmlcov/

# Test files (keep tests, but exclude test output)
tests/.pytest_cache

# Documentation
docs/_build/

# Temporary files
*.tmp
*.temp

# Log files
*.log
logs/

# Local development
.env
.env.local
.env.*.local

# SSH keys and sensitive files (should never be in container)
id_rsa*
*.pem
*.key

# Development tools
.justfile
Justfile

# Exclude markdown files except README
*.md
!README.md