Installation

Stable release from sources

The sources for Data Validation can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/jchiyah/datavalidation

Or download the tarball:

$ curl  -OL https://github.com/jchiyah/data-validation/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install

Development from sources

The sources for Data Validation can be downloaded from the Github repo.

To install the package for development follow these steps:

$ git clone git://github.com/jchiyah/data-validation data-validation
$ cd data-validation
# create virtual environment and activate it
$ python3 -m venv env
$ source env/activate
# install required packages for development
$ pip3 install -r requirements/dev.txt
$ python3 setup.py install

Check the common commands used throughout development and other utilities that you may need to build the documentation or run the tests.