Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 525 Bytes

.upload.md

File metadata and controls

41 lines (27 loc) · 525 Bytes

Upload to pypi

  1. Install twine

    pip install twine
  2. Build Dist

    python3 setup.py sdist bdist_wheel
  3. Check source

    twine check dist/*
  4. Upload to TestPypi

    twine upload --repository-url https://test.pypi.org/legacy/ dist/*
  5. Install

    sudo pip install -i https://test.pypi.org/simple/ youtube-stream -U

For Official Pypi

  1. Upload to Pypi

    twine upload dist/*