30 lines
249 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
# 虚拟环境
.venv/
venv/
env/
# 测试与工具缓存
.pytest_cache/
.mypy_cache/
.coverage
htmlcov/
# IDE / 编辑器
.vscode/
.idea/
*.swp
*.swo
*~
# 本地配置
.env
*.local