It is a package builder for distributing oglhclient throught Pypi.
For uploading a new version it is necessary to update the versions inside setup.py, something like:
version = '0.1.5'In case of a change in the oglhclient, it is also necessary to update the download_url variable in setup.py for matching the proper release.
For uploading a new version:
Create ~/.pypirc with:
[distutils]
index-servers =
pypi
[pypi]
username=opengeardev
password=password-of-opengeardev-user-goes-here
Run:
$ git submodule update --remote
$ pandoc --from=markdown --to=rst --output=README.rst oglhclient/README.md
$ python setup.py sdist
$ twine upload dist/*