forked from unikmhz/npui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevelop.sh
executable file
·69 lines (63 loc) · 1.38 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
68
#!/bin/sh
# Use this script to quickly install required dependencies
# and register module directories with distutils.
# WARNING: Use inside an activated virtualenv only!
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 \
python-dateutil \
icalendar \
phpserialize \
dogpile.cache \
repoze.tm2 \
SQLAlchemy \
zope.sqlalchemy \
transaction \
waitress \
pyramid \
pyramid_mako \
pyramid_redis_sessions \
pyramid_rpc \
pyramid_debugtoolbar \
pyramid_mailer \
cliff \
Babel \
lingua \
lxml \
tornado \
sockjs-tornado \
tornado-redis \
cracklib
# FIXME: Remove this as soon as new version of tornado-celery is out.
# This fixes inability to install on Py3k.
# Version 0.3.4 from PyPI is affected.
pip install \
--upgrade \
git+https://github.com/mher/tornado-celery.git
# FIXME: maybe remove this, or let the user choose a driver?
pip install \
--upgrade \
--allow-external mysql-connector-python \
mysql-connector-python
for mod in $NPMOD_DEFAULT
do
pip install -e $mod
done