forked from conestack/cone.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.sh
executable file
·34 lines (29 loc) · 1.37 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
if [ -x "$(which python)" ]; then
rm -r py2
virtualenv --clear --no-site-packages -p python py2
./py2/bin/pip install coverage
./py2/bin/pip install waitress
./py2/bin/pip install pyramid==1.9.4
./py2/bin/pip install repoze.zcml==0.4
./py2/bin/pip install repoze.workflow==0.6.1
./py2/bin/pip install https://github.com/bluedynamics/node/archive/master.zip
./py2/bin/pip install https://github.com/bluedynamics/node.ext.ugm/archive/master.zip
./py2/bin/pip install https://github.com/bluedynamics/yafowil/archive/master.zip
./py2/bin/pip install https://github.com/bluedynamics/cone.tile/archive/master.zip
./py2/bin/pip install -e .[test]
fi
if [ -x "$(which python3)" ]; then
rm -r py3
virtualenv --clear --no-site-packages -p python3 py3
./py3/bin/pip install coverage
./py2/bin/pip install waitress
./py3/bin/pip install pyramid==1.9.4
./py3/bin/pip install repoze.zcml==1.1
./py3/bin/pip install repoze.workflow==1.1
./py3/bin/pip install https://github.com/bluedynamics/node/archive/master.zip
./py3/bin/pip install https://github.com/bluedynamics/node.ext.ugm/archive/master.zip
./py3/bin/pip install https://github.com/bluedynamics/yafowil/archive/master.zip
./py3/bin/pip install https://github.com/bluedynamics/cone.tile/archive/master.zip
./py3/bin/pip install -e .[test,docs]
fi