First install the external dependencies, see :doc:`./getting_started`.
Both poetry and uv are supported for development.
To run the tests:
$ poetry install
$ poetry run pip install -e .
# change things
$ poetry run pytestTo work on the documentation:
$ poetry install --with docs
$ poetry run make -C docs watch
# See http://127.0.0.1:8000To run the tests:
$ uv sync
$ uv pip install -e .
# change things
$ uv run pytestTo work on the documentation:
$ uv sync --group docs
$ uv run make -C docs watch
# See http://127.0.0.1:8000