hello-world contains all the boilerplate you need to create a Python package.
Here’s how to set up hello-world for local environment.
1- Clone the hello-world locally:
$ git clone ssh://git@github.com:cbitterfield/hello-world.git
2- Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up the package for local development:
$ sudo make boostrap
$ mkvirtualenv hello-world
$ pip install -r requirements/dev.txt
3- How to enable/disable virtualenv
$ workon hello-world
$ ...
$ deactivate
This package was generated using Yeoman and Cookiecutter projects.