A python program for scaffolding python projects.
You only need to do this once, if you've done it before for this project, you can skip this step.
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
# Install the production dependencies
pip install -r requirements.txt
# Install development dependencies
pip install -r requirements-dev.txt
inv clean
inv test
inv coverage
inv lint
inv