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

# 测试与覆盖率
.pytest_cache/
# 显式指定 --basetemp 时 pytest 不会自己清理，留在仓库里会污染 git status
.pytest_basetemp/
.pt_*/
.coverage
coverage.xml
htmlcov/
.ruff_cache/
.mypy_cache/

# 编辑器
.idea/
.vscode/
*.swp

# 操作系统
.DS_Store
Thumbs.db

# WorkBuddy 会话与记忆：属于本机工作目录，不是仓库资产
.workbuddy/
