#!/usr/bin/env bash

set -x -e -u

if [[ -f "${SRC_DIR}/requirements.txt" ]]; then
  pushd "${SRC_DIR}"
  pip install -r requirements.txt
  popd
fi
