# Git
.git
.gitignore
.gitattributes

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
dist
build
.eggs
.pytest_cache
.ruff_cache
.coverage
htmlcov

# Virtual environments
venv
env
ENV
.venv

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

# OS
.DS_Store
Thumbs.db

# Documentation
docs

# CI/CD
.github
.pre-commit-config.yaml

# Tests
tests
