Description (same that is provided in the pyproject.toml, which is the same as the repository description).
# code example of how to use the packageCreate a virtual environment:
python -m venv .venvActivate the virtual environment:
source .venv/bin/activate # if using linuxInstall the project in editable mode:
pip install -e .Install test dependencies:
pip install ".[dev-test]"Run the test command from the provided script:
./scripts/test.shAfter running the tests, a coverage report will be available in htmlcov/index.html. You can run the following command to open the report using google chrome:
google-chrome htmlcov/index.html
