Quick Start

Requirements

  • Python 2.7 + or 3.3 +
  • pip 9.0.1 +

Setting up Virtualenv

sudo pip install virtualenv
virtualenv venv
source venv/bin/activate

The project can then be installed directly using pip or built from source.

Installation

  • Using pip directly from Github (Note: This will install the current master branch):

    pip install git+git://github.com/Covata/delta-sdk-python.git@master
    

Building from Source

Building the project

  • Install PyBuilder:

    pip install pybuilder
    
  • Check out the project:

    git clone https://github.com/Covata/delta-sdk-python.git
    cd delta-sdk-python
    
  • Build the project:

    pyb
    

Installing the binary distribution

  • Using PyBuilder:

    pyb install
    
  • Using Distutils, where x.y.z is the version number:

    cd target/dist/delta-sdk-python-x.y.z
    python setup.py install