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

# --- 环境 / 工具链 ---
.venv/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/
site/

# --- 运行产物 ---
.offipy.log
_audit/
*.audited.html
out/
logs/

# 内部开发文档（研究/审计/计划，不入库）——见 CLAUDE.md「开发文档不进 git 追踪」
docs/superpowers/
docs/development/
docs/development-history/

# vendored 转换器本机偏好（跨机器不同，不入库）
src/offipy/_vendor/html_to_editable_pptx/.config.local.toml
# vendored 转换器回归测试的生成产物（可再生成，不入库）
src/offipy/_vendor/html_to_editable_pptx/tests/fixtures/regression_deck.pptx
src/offipy/_vendor/html_to_editable_pptx/tests/fixtures/regression_deck_audit/

# 遗留的回归测试产物（正式测试目录已改用 tests/）
/test/

# --- OS / 编辑器 ---
.DS_Store
Thumbs.db
.idea/
.vscode/

# --- 密钥 ---
.env
.env.*
*.local
# 发布凭证（PyPI/TestPyPI token 明文，绝不入库）
.pypirc
