# Git
.git
.gitignore
.gitattributes

# CI/CD
.github

# Documentation
docs/
*.md
!README.md

# Tests
tests/
.pytest_cache/
.coverage
htmlcov/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
env/
ENV/
.venv

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

# Jupyter
.ipynb_checkpoints

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Ruff
.ruff_cache/

# Environment files (security - don't copy secrets)
.env
.env.*
*.pem
*.key
service_account.json

# Docker files (no need to copy docker configs into the image)
docker-compose.yml
docker-compose.*.yml
Dockerfile*
.dockerignore

# Misc
*.log
.coverage.*
coverage.xml
*.cover
.hypothesis/
