打包
python3 setup.py sdist bdist_wheel
上传到测试账户
pip install --user --upgrade twine
python3 -m twine upload --repository testpypi dist/*
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps example-pkg-YOUR-USERNAME-HERE
上传到主要账户
python3 -m twine upload dist/*
网友评论