spaCy/build.sh

9 lines
157 B
Bash
Raw Normal View History

2015-12-13 14:51:23 +03:00
#!/bin/bash
if [ ! -d ".build" ]; then
2015-12-13 15:09:55 +03:00
virtualenv .build
2015-12-13 14:51:23 +03:00
fi
. .build/bin/activate
pip install -U -r requirements.txt
2015-12-13 15:08:06 +03:00
pip install -U tox
2015-12-13 15:07:15 +03:00
python -m tox $@