python | 打包上传至PyPI
python | 打包上传至PyPI
主要参考:
https://blog.csdn.net/yifengchaoran/article/details/113447773
https://zhuanlan.zhihu.com/p/61174349
主要步骤:
- 注册PyPI账号并生成token
- 用setuptools和wheel打包
- 用twine上传包
之后就可以用pip安装了。
关键的上传命令:
python setup.py sdist bdist_wheel # 打包
twine upload dist/* # 上传
本文来自博客园,作者:Mz1,转载请注明原文链接:https://www.cnblogs.com/Mz1-rc/p/16126255.html
如果有问题可以在下方评论或者email:mzi_mzi@163.com