# Virtual environments
.venv/
venv/
env/

# Python bytecode
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution / packaging
build/
dist/
*.egg-info/
*.egg
wheels/

# Testing / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
coverage.json
.hypothesis/

# Type-checker / linter caches
.mypy_cache/
.ruff_cache/

# Editors
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# Logs
*.log

# Local environment overrides (machine-local credentials / config)
.env.local

# Mutation-testing output (mutmut / cargo-mutants — local run artifacts)
mutants/

# Local audit artifacts (Round 5+ Gate 3 LLM cross-review packets + reports).
# The canonical prompt lives at ~/.claude/plans/gate3-audit-prompt.md and the
# canonical findings ledger lives at docs/source/audit_findings.md; per-run
# raw model outputs are author-local working copies.
# Tracked: per-round briefing files (`gate3-audit-round-<N>.md`).
# Untracked: prompt template, generic report, per-round report files.
gate3-audit-prompt.md
gate3-audit-report.md
gate3-audit-round-*-report.md

# Claude Code project settings (machine-local)
.claude/

# mkdocs build output (Section E.1 v0.28.0)
/site/
docs/build/
# Sphinx autosummary stub pages (regenerated at build time from the
# autosummary directive's `autosummary_generate = True` setting).
docs/source/api/generated/
