Publish Python package on pypi.org
Install twine
pip install twine |
Build the wheel
python .\setup.py sdist bdist_wheel |
Check the wheel
twine check dist/* |
Upload to pypi.org
twine upload dist/* |
Setup.py Example
from distutils.core import setup |
pip install twine |
python .\setup.py sdist bdist_wheel |
twine check dist/* |
twine upload dist/* |
from distutils.core import setup |