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

# 虚拟环境
.venv/
venv/
ENV/

# 测试与类型检查
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.tox/
.nox/

# 环境与密钥
.env
.env.*
!.env.example

# IDE / 编辑器
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store

# pyinstaller 构建产物（build.sh 产出上级目录的 clak 二进制）
/clak
/clak.spec

