Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 502 Bytes

File metadata and controls

44 lines (34 loc) · 502 Bytes

Developers

Set up dev environment

First, create a virtual environment:

python -m venv .venv

and activate:

.venv\scripts\activate

Then install the necessary packages for development:

pip install -r dev-requirements.txt

Build source and wheel

python -m build --outdir ./build

Build documentation

sphinx-build -W -b html ./docs ./build/docs

Install deps for running tests

pip install -e .

Run tests

tox

or

pytest