Yulong Niu

个人博客

Python打包和上传PyPI

Posted at — May 23, 2015

一个简单的Python包创建和上传PyPI流程。

1. 打包

## 安装相关工具
pip install --upgrade setuptools wheel twine

当Python包代码完成后,在根目录下创建setup.py文件,具体参考sampleproject

## 进入Python包目录
## 测试
python setup.py test

## 打包
python setup.py sdist bdist_wheel

2. 上传PyPI

PyPI注册帐号。

## 进入Python包目录
## 上传
twine upload dist/*

参考网址

更新记录

2018年6月23日