Edit the rtwo/version.py
module and change the appropriate integer in the VERSION
line to reflect the changes made.
VERSION = (major_change, minor_change, patch_change, 'dev', 0)
In the setup.py
command sdist results in tarball, and bdist_wheel a wheel file.
pip install -r requirements.txt
python setup.py sdist bdist_wheel
pip install twine
twine upload <path to tar.gz> <path to .whl>