Skip to content

Releasing

Waldemar Quevedo edited this page Jul 17, 2017 · 2 revisions
  • Get a pypi account
  • Configure ~/.pypirc with your creds
[distutils]
index-servers =
    pypi

[pypi]
username:user
password:password
  • Checkout a tagged release then do the upload using `twine`
python setup.py sdist
twine upload dist/nats-client-X.Y.Z.tar.gz
Clone this wiki locally