# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# Virtual environments
.venv/
venv/
env/
ENV/

# Build artifacts
build/
dist/
*.egg-info/
.eggs/

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

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Environment
.env
.env.local

# OS
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Documentation
docs/
CONTRIBUTING.md
CHANGELOG.md
DEPLOYMENT.md
QUICKSTART.md
PUBLISH.md

# CI/CD
.github/

# Tests
tests/
