# Secrets / local config – never commit API keys
.env
.env.*
!.env.example
*.key
secrets.*

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

# Tooling / caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/
.tox/

# Editor / OS
.idea/
.vscode/
.DS_Store
