Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 409 Bytes

DEPLOYMENT.md

File metadata and controls

26 lines (21 loc) · 409 Bytes

Deployment guide

Long version here. TL;DR; below:

  1. Install Twine & Wheel
$ pip install twine wheel
  1. Pypi configuration
# in $HOME/.pypirc
[pypi]
username = <username>
password = <password> # if not set here, you'll be prompt, which is preferable
  1. Build
$ python setup.py bdist_wheel
  1. Upload
$ twine upload dist/*