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

# Env / secrets
.env
.env.*
!.env.example

# Test artefacts
.pytest_cache/
.coverage
htmlcov/

# Type checker / linter
.mypy_cache/
.ruff_cache/

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

# OS
.DS_Store
Thumbs.db

# Private product docs (keep local only)
*.md
!README.md

# Node (for future frontend)
node_modules/
.next/
.nuxt/
