#! /bin/sh -e

VENV="venv"
BIN="$VENV/bin/"

set -x

python3 -m venv $VENV

${BIN}pip install -U pip
${BIN}pip install -r requirements.txt
