# Git
.git
.gitignore

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
*.egg-info
.eggs
*.egg
dist
build

# Virtual environments
.env
.env.local
venv
.venv
env/

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

# Testing
.pytest_cache
.coverage
htmlcov/
.tox/

# Documentation
docs/_build/
site/

# OS
.DS_Store
Thumbs.db

# Local development
*.log
*.db
*.sqlite

# Test files
tests/
