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

# --- Python ---
.venv/
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/

# --- build artefacts ---
build/
dist/
*.whl
*.tar.gz

# --- macOS ---
.DS_Store

# --- editor ---
.vscode/
.idea/
*.swp

# --- pipeline cache ---
.cache/
