from setuptools import setup, find_packages REQUIREMENTS = [ 'Django==1.7.7', 'pytz>=2011n', 'django-mobile==0.3.0', 'django-haystack==2.2', 'pysolr==2.1', 'django-hitcounter==0.1.1', 'django-tastypie==0.11.0', # Deps for Single SignOn (SSO) - Replaced with django-browserid==0.9 'django-browserid==0.11', 'django-revproxy==0.9.0', # Diazo 'diazo==1.0.5', ### Move out of colab (as plugins): # Deps for badger 'Pillow==2.5.1', 'django-i18n-model==0.0.7', # Deps for super_archives 'etiquetando==0.1', 'django-taggit==0.12.1', 'html2text==3.200.3', 'chardet>=1.0.1', # Deps for gitlab plugin 'python-dateutil==1.5', # Converse.js (XMPP client) 'django-conversejs==0.3.4', # Mailman 2 REST API 'mailman-api==0.2.9', ] 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.9', url='https://github.com/colab-community/colab', author='Sergio Oliveira', author_email='sergio@tracy.com.br', 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.management:execute_from_command_line', 'colab-init-config = colab.management:initconfig', ]}, zip_safe=False, long_description=open('README.rst').read(), install_requires=REQUIREMENTS, tests_require=TEST_REQUIREMENTS, test_suite="tests.run.run_with_coverage", 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', ], )