官方站点:https://pypi.org
帮助文档:https://packaging.python.org/en/latest/tutorials/packaging-projects/#source-distributions
1)在官方网站注册帐号
2)按照详细说明文档,编写setup文件,包括setup.py / setup.cfg / README(支持markdown)等
3)在项目目录执行
python setup.py sdist
pip install twine
twine upload dist/xxx-0.0.x.tar.gz
4)pip install xxx 并验证