# Virtual environments
.venv/
venv/

# Python bytecode
__pycache__/
*.pyc
*.pyo

# Testing
.pytest_cache/
.coverage
htmlcov/

# Type checking
.mypy_cache/

# Environment
.env

# Build & distribution
build/
dist/
*.egg-info/
*.egg
.eggs/

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

# OS
.DS_Store
Thumbs.db
