Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 768 Bytes

File metadata and controls

29 lines (20 loc) · 768 Bytes

Entry

Build Status MIT license

Documentation

相关文档见 Entry 应用文档

Licensing

Entry is released under MIT license.

打包上传到 PyPI

依赖

pip install twine  # 上传工具
pip install wheel  # 打包工具

打包上传

rm -rf dist/  # 清空以前的构建
python setup.py sdist  # 打包源代码
python setup.py bdist_wheel  # 构建 wheel
twine upload dist/*  # 上传