Commit 61329d56d8580e8e09cb6e5afd178cdbe518033d
1 parent
b94ad3de
Exists in
master
and in
31 other branches
Rearranged colab deps
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br> Signed-off-by: Carolina Ramalho <carol15022@hotmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Showing
1 changed file
with
18 additions
and
10 deletions
Show diff stats
setup.py
@@ -5,17 +5,10 @@ from setuptools import setup, find_packages | @@ -5,17 +5,10 @@ from setuptools import setup, find_packages | ||
5 | REQUIREMENTS = [ | 5 | REQUIREMENTS = [ |
6 | 'Django==1.7.7', | 6 | 'Django==1.7.7', |
7 | 'pytz>=2011n', | 7 | 'pytz>=2011n', |
8 | - 'chardet>=1.0.1', | ||
9 | - 'python-dateutil==1.5', | ||
10 | 'django-mobile==0.3.0', | 8 | 'django-mobile==0.3.0', |
11 | 'django-haystack==2.2', | 9 | 'django-haystack==2.2', |
12 | 'pysolr==2.1', | 10 | 'pysolr==2.1', |
13 | - 'etiquetando==0.1', | ||
14 | - 'html2text==3.200.3', | ||
15 | - 'django-taggit==0.12.1', | ||
16 | 'django-hitcounter==0.1.1', | 11 | 'django-hitcounter==0.1.1', |
17 | - 'Pillow==2.5.1', | ||
18 | - 'django-i18n-model==0.0.7', | ||
19 | 'django-tastypie==0.11.0', | 12 | 'django-tastypie==0.11.0', |
20 | 'gunicorn==19.1.0', | 13 | 'gunicorn==19.1.0', |
21 | 'eventlet==0.15.2', | 14 | 'eventlet==0.15.2', |
@@ -24,12 +17,27 @@ REQUIREMENTS = [ | @@ -24,12 +17,27 @@ REQUIREMENTS = [ | ||
24 | 'django-browserid==0.11', | 17 | 'django-browserid==0.11', |
25 | 'django-revproxy==0.9.0', | 18 | 'django-revproxy==0.9.0', |
26 | 19 | ||
27 | - # Converse.js (XMPP client) | ||
28 | - 'django-conversejs==0.3.4', | ||
29 | - | ||
30 | # Diazo | 20 | # Diazo |
31 | 'diazo==1.0.5', | 21 | 'diazo==1.0.5', |
32 | 22 | ||
23 | + ### Move out of colab (as plugins): | ||
24 | + | ||
25 | + # Deps for badger | ||
26 | + 'Pillow==2.5.1', | ||
27 | + 'django-i18n-model==0.0.7', | ||
28 | + | ||
29 | + # Deps for super_archives | ||
30 | + 'etiquetando==0.1', | ||
31 | + 'django-taggit==0.12.1', | ||
32 | + 'html2text==3.200.3', | ||
33 | + 'chardet>=1.0.1', | ||
34 | + | ||
35 | + # Deps for gitlab plugin | ||
36 | + 'python-dateutil==1.5', | ||
37 | + | ||
38 | + # Converse.js (XMPP client) | ||
39 | + 'django-conversejs==0.3.4', | ||
40 | + | ||
33 | # Mailman 2 REST API | 41 | # Mailman 2 REST API |
34 | 'mailman-api==0.2.9', | 42 | 'mailman-api==0.2.9', |
35 | ] | 43 | ] |