Installation

You can install hubugs either via PyPI or from source.

Using PyPI

To install using pip:

$ pip install hubugs  # to install in Python’s site-packages
$ pip install --install-option="--user" hubugs  # to install for a single user

To install using easy_install:

$ easy_install hubugs

From source

If you have downloaded a source tarball you can install it with the following steps:

$ python setup.py build
# python setup.py install  # to install in Python’s site-packages
$ python setup.py install --user  # to install for a single user

hubugs depends on following packages, all of which are available from PyPI:

  • click an excellent package for building command line tools in Python

  • configparser for configuration file handling

  • html2text is used formatting HTML for the terminal

  • httplib2 for HTTP communications

  • Jinja2 for templating

  • misaka is used for converting issue text to HTML

  • Pygments for syntax highlighting in template output