This repository has been archived by the owner on May 17, 2018. It is now read-only.
forked from colab/colab
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
80 lines (66 loc) · 1.96 KB
/
setup.py
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
69
70
71
72
73
74
75
76
77
78
79
80
from setuptools import setup, find_packages
REQUIREMENTS = [
'Django>=1.7.10,<1.8',
'django-taggit==0.21.3',
'pytz==2011n',
'django-hitcounter==0.1.1',
'python-social-auth==0.2.21',
'python-decouple==3.1',
# Search
'django-haystack>=2.2, <2.5',
'Whoosh==2.7.0',
# revproxy
'django-revproxy[diazo]==0.9.12',
# Async Signals
'celery[redis]>=3.1, <4.0',
# Acceptance tests
'selenium>=2.53.1',
'behave_django<0.4.0',
### Move out of colab (as plugins):
# Deps for super_archives
'etiquetando==0.1',
'django-taggit>=0.12.1',
'html2text>=3.200.3',
'chardet>=2.3.0',
'urllib3==1.16',
'requests==2.11.0'
]
TEST_REQUIREMENTS = [
'coverage>=3.7.1',
'coveralls>=0.5',
'flake8>=2.3.0',
'mock==1.0.1',
]
EXCLUDE_FROM_PACKAGES = []
setup(
name='colab',
version='1.13.5',
url='https://github.com/colab-community/colab',
author='Sergio Oliveira',
author_email='[email protected]',
description='Collaboration platform for communities',
license='LICENSE.txt',
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
entry_points={'console_scripts': [
'colab-admin = colab.utils.runner:execute_from_command_line',
]},
zip_safe=False,
long_description=open('README.rst').read(),
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
test_suite="tests.run.runtests",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
)