Metadata-Version: 2.0
Name: inhoj
Version: 2.0.2
Summary: Useful Python Code Snippets
Home-page: https://github.com/johnidm/inhoj
Author: Johni Douglas Marangon
Author-email: johni.douglas.marangon@gmail.com
License: MIT License
Keywords: inhoj
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5

inhoj
==========================

[![Build Status](https://travis-ci.org/mtchavez/python-package-boilerplate.png?branch=master)](https://travis-ci.org/mtchavez/inhoj)
[![Requires.io](https://requires.io/github/mtchavez/python-package-boilerplate/requirements.svg?branch=master)](https://requires.io/github/johnidm/inhoj/requirements?branch=master)

The set of the useful Python code snippets

## Install

```
pip install inhoj
```

## Why?

## Features

#### Print in terminal with colors

#### Catch signals to allow graceful process shutdown

## Requirements

Package requirements are handled using pip. To install them do

```
pip install -r requirements.txt
```

## Tests

Testing is set up using [pytest](http://pytest.org) and coverage is handled
with the pytest-cov plugin.

Run your tests with ```py.test``` in the root directory.

Coverage is ran by default and is set in the ```pytest.ini``` file.
To see an html output of coverage open ```htmlcov/index.html``` after running the tests.

## Travis CI

There is a ```.travis.yml``` file that is set up to run your tests for python 2.7
and python 3.2, should you choose to use it.

