python pyproject.toml 项目打包及分发

相关:

python setuptools 项目打包及分发





构建与发布

# 安装构建工具
python -m pip install --upgrade build

# 创建wheel包
python -m build --wheel

# 检查包质量
python -m pip install twine
twine check dist/*

# 上传到PyPI
twine upload dist/*









posted on 2025-12-06 13:09  Angry_Panda  阅读(1)  评论(0)    收藏  举报

导航