#!/usr/bin/env bash
#/ Usage: bin/setup
#/ Description: Sets up the dependencies needed to develop this project
source bin/helpers/_utils.sh
set_source_and_root_dir

if [ ! -d "env" ]; then
  python3 -m venv env
fi

source env/bin/activate
pip install -e ".[dev,test]"
