1、pypi的测试服和正式服不是同一个数据库,需要注册两次账号
2、pypi 存放python依赖库
3、sphinx 文档自动生成工具
https://packaging.python.org/tutorials/packaging-projects/
https://zhuanlan.zhihu.com/p/79164800
https://test.pypi.org/project/JiweiCommonUtil/0.0.1/
https://pypi.org/project/JiweiCommonUtil/0.0.2/
pip install JiweiCommonUtil==0.0.3
./doc/_build/index.html
from JiweiCommonUtil.imageprocess import readMatFile,cv2Bgr2Rgb
from JiweiCommonUtil.imgshow import showLineImg
from JiweiCommonUtil.util import getNowTime
1、edit setup.py version
2、package proejct: python setup.py sdist bdist_wheel
3、upload proejct to pypi server: python -m twine upload dist/*
4、sphinx-apidoc -F -o ./doc ./JiweiCommonUtil