Documentation can be found here.
Try it out using our Streamlit webapp here!
1️⃣ Install Poetry:
pip install poetry
If you encounter an error, try:
export PATH="/home/<user>/.local/bin:$PATH"
2️⃣ Install dependencies:
poetry install
poetry run flake8 .
poetry run black .
poetry run pytest -v .
poetry run coverage run -m pytest -v .
poetry run coverage report -m
Docs can be built using the following commands:
cd docs/
poetry run make html