# Python 字节码与缓存
__pycache__/
*.py[cod]
*$py.class

# C 扩展
*.so

# 打包/发布产物
.Python
build/
dist/
downloads/
eggs/
.eggs/
wheels/
share/python-wheels/
sdist/
parts/
var/
lib/
lib64/
*.egg-info/
.installed.cfg
*.egg

# Hatch
.hatch/
shell/

# 虚拟环境（你的仓库中有 env/virtual/iti-flask）
.venv/
venv/
env/
ENV/
uv.lock

# Flask 实例与本地配置
instance/
.flaskenv
.env
.env.*
!.env.example
.envrc

# 运行期与数据库文件（你的项目含 iti/runtime/iti-flask_dev.db）
*.db
*.sqlite
*.sqlite3
*.db-journal
*.db-wal
*.db-shm
runtime/
iti/runtime/
logs/
*.log
*.pid
iti/static/dist/

# 测试与覆盖率
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.cache/
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/

# 类型检查/静态分析缓存
.mypy_cache/
.ruff_cache/
.pytype/
.pyre/
dmypy.json

# 编辑器/IDE
# .vscode/
# .idea/
# *.iml

# Jupyter
.ipynb_checkpoints/

# 操作系统杂项
.DS_Store
Thumbs.db
Desktop.ini

# 其他
/.python-version

