# Git files
.git
.gitignore

# Python cache and artifacts
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/

# Virtual environments
venv/
env/
.venv/

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

# OS files
.DS_Store
Thumbs.db

# Test files and coverage
.pytest_cache/
.coverage
htmlcov/

# Documentation
docs/
*.md
!README.md

# Logs
*.log

# Docker files
Dockerfile*
.dockerignore
