# Secrets — never commit. Credentials belong in the environment.
.env
.env.*
!.env.example
*.pem
*.key

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

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

# Virtual environments
.venv/
venv/
env/

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