Installation
From PyPI
pip install parasolpy
parasolpy requires Python 3.12 or newer.
From Source
Development installs use Poetry:
git clone https://github.com/jrkasprzyk/parasolpy.git
cd parasolpy
poetry install
Run the test suite with:
poetry run pytest -q
Documentation Dependencies
To build these docs locally, install the optional docs dependencies:
pip install ".[docs]"
sphinx-build -W -b html docs docs/_build/html
With Poetry, install the project first and run Sphinx inside the Poetry environment:
poetry install
poetry run sphinx-build -W -b html docs docs/_build/html