构建为客户端可部署的安装包。
标准Python包构建方式
项目已经配置了标准的Python包构建方式,可以通过以下命令构建:
# 1. 克隆项目
git clone https://gitee.com/jbcode_git/qingzhong.git
cd qingzhong
# 2. 构建wheel包
python setup.py sdist bdist_wheel
# 3. 查看构建结果
ls dist/
# 4. 安装到目标系统
pip install dist/qz_llm_tool-*.whl
wheel安装包