# Python cache / test artifacts
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# Packaging / build output
build/
dist/
*.egg-info/

# Local environments / secrets
.env
.env.*
!.env.example
*.kdbx

# Virtual environments
.venv/
venv/

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