Installation

Install package with pip

To install with pip:

$ pip install scikit-ci

Install from source

To install scikit-ci from the latest source, first obtain the source code:

$ git clone https://github.com/scikit-build/scikit-ci
$ cd scikit-ci

then install with:

$ pip install .

or:

$ pip install -e .

for development.

Dependencies

Python Packages

The project has a few common Python package dependencies. The runtime dependencies are:

pyfiglet
ruamel.yaml>=0.15;python_version == '2.7'
ruamel.yaml>=0.15,<=0.15.94;python_version == '3.4'
ruamel.yaml>=0.15;python_version > '3.4'

The development dependencies (for testing and coverage) are:

codecov==2.0.15
coverage==4.5.1
flake8==3.5.0
pytest==3.6.3
pytest-cov==2.5.1
pytest-runner==4.2
wheel>=0.29.0