# Secrets — never commit
.env
.env.*
!.env.example

# Python
__pycache__/
*.pyc
*.pyo
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# Virtualenvs / build artifacts
.venv/
venv/
build/
dist/
*.egg-info/

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