Added build script
This commit is contained in:
parent
a24a90cf46
commit
b1ef7523a1
1 changed files with 14 additions and 0 deletions
14
scripts/build
Normal file
14
scripts/build
Normal 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
|
Reference in a new issue