添加readme文件及构建脚本

This commit is contained in:
2025-05-25 17:31:34 +08:00
parent 0a9bd74d8e
commit 811cb9eb6b
2 changed files with 59 additions and 0 deletions

23
README.MD Normal file
View File

@@ -0,0 +1,23 @@
# 建工工具箱
## 功能
- 达成度报告生成
- 答辩表生成
## 构建
### 自动构建
```bash
.\build.bat
```
### 手动构建
```bash
python -m venv .venv
.\.venv\Scripts\activate.bat
pip install -r requirements.txt
pyinstaller .\main.spec
```