-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.08 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.08 KB
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
from setuptools import setup, find_packages
setup(
name="seed-continuous-learning",
version="0.1",
url='http://github.com/westerncapelabs/seed-continuous-learning',
license='BSD',
author='Western Cape Labs',
author_email='devops@westerncapelabs.com',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django==1.9.1',
'djangorestframework==3.3.2',
'djangorestframework-csv==1.4.1',
'dj-database-url==0.3.0',
'psycopg2==2.6.1',
'raven==5.10.0',
'gunicorn==19.4.5',
'django-filter==0.12.0',
'whitenoise==2.0.6',
'celery==3.1.19',
'django-celery==3.1.17',
'redis==2.10.5',
'pytz==2015.7',
'django-rest-hooks==1.2.1'
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)