Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 428 Bytes

python-deploy-pypi.md

File metadata and controls

17 lines (9 loc) · 428 Bytes

Deploy python package to PyPI

twine upload dist/* --skip-existing

  • DIST_DIRECTORY: dist directory name or path

Example:

twine upload dist/* --skip-existing

Note: twine should be preinstalled, before running this. You can get twine here

Python Deploy

Related