Getting Started

Installation

  1. You can get stable version of Supra by using pip or easy_install:

    pip install supra
    
  2. You will need to add the 'supra' application to the INSTALLED_APPS setting of your Django project settings.py file.:

    INSTALLED_APPS = (
        ...
        'supra',
    )