python | 打包上传至PyPI

python | 打包上传至PyPI

主要参考:
https://blog.csdn.net/yifengchaoran/article/details/113447773
https://zhuanlan.zhihu.com/p/61174349

主要步骤:

  1. 注册PyPI账号并生成token
  2. 用setuptools和wheel打包
  3. 用twine上传包

之后就可以用pip安装了。

关键的上传命令:

python setup.py sdist bdist_wheel   # 打包
twine upload dist/*                 # 上传
posted @ 2022-04-10 16:08  Mz1  阅读(37)  评论(0编辑  收藏  举报