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

# 开发工具
.coverage
.coverage.*
coverage.json
.pytest_cache/
.ruff_cache/
.mypy_cache/
.hypothesis/

# IDE
.vscode/
.idea/
*.swp
*.swo

# Git
.git/
.gitignore
.gitattributes

# 文档（README.md 需要包含，pyproject.toml 引用它）
LICENSE
*.md
!README.md

# 测试
tests/
pytest.ini

# 本地配置（使用用户挂载的配置）
config.json

# uv
.uv/

# Docker
Dockerfile
.dockerignore
