Metadata-Version: 2.4
Name: toolsz
Version: 0.1.2
Summary: 负责工具
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: dill>=0.3.9
Requires-Dist: pytest>=8.3.5
Requires-Dist: pytest-html>=4.1.1
Requires-Dist: setuptools>=78.1.0

# tools
一个便捷工具包

## 常规操作

### 导出环境
```
uv export --format requirements-txt > requirements.txt
```
### 更新文档
```
mkdocs serve # 预览
mkdocs gh-deploy -d ../.temp # 同步到github网站
```
### 发布
```
uv build
uv publish
```
### 运行测试并同步到测试服务
```
bash run_test.sh
```

