Building wheels and docs and running the tests

First clone the repository

$ git clone git@github.com:chdemko/py-part.git
$ cd py-part

Building the docs

$ pip install .[docs]
$ python setup.py build_sphinx

Building the wheel with cython

$ pip install .[build]
$ python setup.py bdist --cythonize

Building the wheel

$ pip install .
$ python setup.py bdist

Running the tests

$ pip install tox
$ tox -e py