1. 开发

1.1. 制作文档

将源码 reST 文件,编译为 HTML 文档。

$ cd MYZ/docs
$ make html

参考资料

1.2. 打包发布

将项目打包为“源码(.tar.gz)包”和“Wheel包”,并发布到“PYPI(https://pypi.org)”站点。

$ cd MYZ
$ python setup.py sdist bdist_wheel
$ twine upload dist/*