# Git
.git/
.gitignore

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
build/
dist/
*.egg-info/
*.egg
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.hypothesis/

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

# OS
.DS_Store
Thumbs.db

# Logs
*.log

# Environment
.env*

# Documentation & specs
specs/
docs/
*.md
!README.md

# Testing
tests/
coverage/

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

# Temporary files
tmp/
*.tmp
