#!/bin/bash

if [[ ! -e venv ]]; then
    virtualenv -p python3 venv
fi

(cd venv; . bin/activate; cd ..)

echo "installing pygame"
pip install hg+http://bitbucket.org/pygame/pygame

pip install -r requirements.txt


