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

# Virtual environments
.venv/
venv/
env/

# Test / coverage / tooling caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml

# Credentials -- this library never ships a real one, but its own tests
# and any local smoke-testing might create one; never let it get committed.
credentials.json
*.credentials.json
service-account*.json
.env
.env.*
!.env.example

# Editors / OS
.vscode/
.idea/
.DS_Store
