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

# 覆盖率数据
.coverage
htmlcov/

# 运行时数据（Claude 等工作目录，不上传）
.agent/
.claude/

# 环境变量
.env
.env.local

# IDE
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.idea/

# 系统
.DS_Store
Thumbs.db

# 虚拟环境
.venv/
venv/
