标签:osi test tps tutorials 警告 windows 完成 http png
先注册一个pypi的账号
链接:https://pypi.org
简单的setup文件如下就行
from distutils.core import setup
setup(
name = "projectname", #
author = "xxxx",
version = "1.0.0",
author_email = "xxxx@163.com",
url = "http://www.xxx.com"
)
[distutils]
index-servers =
pypi
[pypi]
repository:https://test.pypi.org/legacy/
username:pypiusername
password:pypipassword
先做一些检查
注意有没有错误和警告
直接打包发布
https://packaging.python.org/tutorials/packaging-projects/
完成
标签:osi test tps tutorials 警告 windows 完成 http png
原文地址:https://www.cnblogs.com/aaronhua/p/11181616.html