Skip to content
Gleb Nikonorov edited this page Aug 10, 2020 · 4 revisions

Releasing the package

Currently, this guide is being used to publish this package.

Create and push a git tag after this is done

Short version:

  • pip install twine
  • python setup.py sdist
  • twine upload dist/<THE_PACKAGE_THAT WAS JUST BUILT>
  • git tag X.Y.Z -m "Adds X.Y.Z tag for PyPI
  • git push --tags origin master
Clone this wiki locally