Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 370 Bytes

BUILD.md

File metadata and controls

26 lines (18 loc) · 370 Bytes

Instructions for Building

Install dependencies

Use a virtual environment and install dependencies

> python3 -m venv venv
> source venv/bin/activate
> pip install build

python3 -m venv venv; source venv/bin/activate; pip install build

Build the project

This will create the /dist directory

python -m build

Run tests

pytest