Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.11 KB

README.md

File metadata and controls

43 lines (33 loc) · 1.11 KB

Python Version pre-commit Code style: black

TDP Lib

Install tdp lib for dev:

poetry install # Installs dependencies and the package in venv
poetry run pre-commit install --hook-type pre-commit
poetry run pre-commit install --hook-type commit-msg

Install optional dependencies for graph visualization:

sudo apt install graphviz
poetry install -E visualization

Run the tests:

poetry run pytest tdp

Format the code:

poetry run black .

Documentation

Documentation can be found inside:

To generate the documentation:

poetry install -E docs
poetry run task docs-html