Installation guide
This page shows different ways to install the package.
Installation from PyPI
The newest stable releases are available via pip:
pip install madas
Installation from source
Currently, the code can be installed only through the git project. You can clone the project using:
git clone --recurse-submodules https://github.com/kubanmar/madas.git
After cloning, you can enter the project folder and install the package using pip:
cd madas
pip install .
Running tests
After installation, it is advised to test the code. This can be done in the same directory of the code, using pytest, which will be installed as a dependency via pip.
pytest -v tests
The flag -v improves the test verbosity, so the output is more detailed. More details on pytest can be found here .