Python Project template
TODO
This project is a standard Python project using a virtualenv.
To create the virtualenv it assumes that there is a python3 (or python for Windows) executable in your path witch access to the venv package.
To manually create a virtualenv, run
python3 -m venv .venvAfter the init process completes and the virtualenv is created, you can use the following command to activate the virtualenv.
source .venv/bin/ActivateIf you are on a Windows platform, you would activate the virtualenv like this.
.\.venv\Scripts\activateOnce the virtualenv is activated, you can install the required dependencies.
# update dependency file
pip-compile --output-file=requirements.txt requirements.in
# install dependencies
pip install -r requirements.txtAnd for local development, add set your PYTHONPATH.
export PYTHONPATH=$PYTHONPATH:....This project is formatted with black.