# Git
.git
.gitignore
.gitattributes

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

# Virtual environments
venv
.venv
env
ENV

# Testing
.pytest_cache
.coverage
htmlcov
coverage.xml
.tox

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

# OS
.DS_Store
Thumbs.db

# Documentation
docs
*.md
!README.md

# CI/CD
.github

# Other
*.log
*.tmp
node_modules

