1
Fork 0

Added build script

This commit is contained in:
Jake Howard 2015-11-27 18:16:32 +00:00
parent a24a90cf46
commit b1ef7523a1
1 changed files with 14 additions and 0 deletions

14
scripts/build Normal file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
pyvenv env
export PATH=env/bin:${PATH}
env/bin/pip install -r requirements.txt
echo "Installing..."
source env/bin/activate
pip install --editable .
deactivate