Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 674 Bytes

File metadata and controls

28 lines (18 loc) · 674 Bytes

Development setup

Development environment

Install Python 3 and uv for your operating system:

The minimum Python version is 3.10.

Run python bootstrap.py to create a virtual environment and install invoke. After that, activate the virtual environment before running other development commands:

python bootstrap.py
source .venv/bin/activate  # On Linux and macOS
.venv\Scripts\activate.bat  # On Windows

Invoke is used as a task runner / build tool.

Then the rest of the dependencies can be installed/updated with:

inv deps

See: http://www.pyinvoke.org/index.html