标签:org wine you simple license legacy tutorials upload 测试
/package_parent_folder
/package
/__init__.py
在__init__.py
文件内添加name = package
,其中package
指的是包名
在package_parent_folder
下添加包文件setup.py
、LICENSE
、README.md
文件。
LICENSE: 包许可说明
README.md: 包说明文件
setup.py: 包安装设置文件
python3 setup.py sdist bdist_wheel
? 生成文件:
> python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
python3 -m pip install --index-url https://test.pypi.org/simple/ example-pkg-your-username
PyPi上传
twine upload dist/*
报错:invalid command ‘bdist_wheel‘
安装wheel
标签:org wine you simple license legacy tutorials upload 测试
原文地址:https://www.cnblogs.com/li1234yun/p/10717702.html