Skip to content
Matthew Corner edited this page Dec 6, 2016 · 2 revisions

Deployment

Umpire is installed from pip using the default PyPi repository. Deploying to pip is easy, and with a properly configured pypirc file it is nearly entirely automated. You can view documentation on the configuration of this file here: http://zestreleaser.readthedocs.io/en/latest/uploading.html

You can run the following script in the root of the Umpire project to deploy the version set in setup.py to PyPi:

#!/bin/bash

python ./setup.py bdist_wheel && python ./setup.py register && python ./setup.py sdist bdist_wheel upload
rm -r *.egg-info dist build
Clone this wiki locally