-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdevelop.sh
executable file
·68 lines (62 loc) · 1.18 KB
/
develop.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/sh
# Use this script to quickly install required dependencies
# and register module directories with distutils.
# WARNING: Use inside an activated virtualenv only!
test -z "$VIRTUAL_ENV" && exit 1
NPMOD_DEFAULT="netprofile \
netprofile_core \
netprofile_documents \
netprofile_geo \
netprofile_dialup \
netprofile_domains \
netprofile_entities \
netprofile_hosts \
netprofile_devices \
netprofile_networks \
netprofile_ipaddresses \
netprofile_rates \
netprofile_tickets \
netprofile_stashes \
netprofile_access \
netprofile_sessions \
netprofile_paidservices \
netprofile_xop \
netprofile_confgen"
pip install \
--upgrade \
packaging \
versioneer \
python-dateutil \
dogpile.cache \
repoze.tm2 \
SQLAlchemy \
zope.sqlalchemy \
transaction \
alembic \
waitress \
pyramid \
pyramid_mako \
pyramid_redis_sessions \
pyramid_rpc \
pyramid_debugtoolbar \
pyramid_mailer \
cliff \
Babel \
lingua \
lxml \
tornado \
sockjs-tornado \
tornado-celery \
tornado-redis \
cracklib \
coverage \
pytest \
pytest-cov
# FIXME: maybe remove this, or let the user choose a driver?
pip install \
--upgrade \
pymysql
for mod in $NPMOD_DEFAULT
do
pip install -e $mod
done