-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
100 lines (91 loc) · 2.76 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import sys
version = __import__('rise').__version__
install_requires = [
'setuptools==18.0.1',
'Django==1.8.4',
'django_configurations==0.9-sbrandtb',
'dj-database-url==0.3.0',
'pylibmc==1.3.0',
'Pillow==2.0.0',
'django-cache-url==0.8.0',
'werkzeug==0.9.4',
'gunicorn==0.17.4',
'easy-thumbnails==1.2',
'django-debug-toolbar==1.3.2',
'django-extensions==1.5.5',
'django-braces==1.4.0',
'django-localflavor==1.1',
'django-allauth==0.22.0',
'django-floppyforms==1.5.2',
'django-custom-user==0.5',
'django-nose==1.4.1',
'raven==5.2.0',
'factory_boy==2.5.1',
'boto==2.9.5',
'django-storages==1.1.8',
'djangorestframework==3.1.0',
'django-cors-headers==1.1.0',
'django-bootstrap-form==3.1',
'markdown==2.6.1',
'django-filter==0.9.2',
'django-templated-email==0.4.9',
'shortuuid==0.4.2',
'redis==2.10.3',
'django-celery==3.1.16',
'whitenoise==2.0.2',
'psycopg2==2.5'
]
# App specific libraries
install_requires += [
]
dep_links = [
"https://onec-pypicloud.s3.amazonaws.com/6f45/django_configurations/django-configurations-0.9-sbrandtb.tar.gz?Signature=y8rhdSkCqUWrslr0T%2B6ljrjz%2BU4%3D&Expires=1440344738&AWSAccessKeyId=AKIAIYMHQ75FUPRJ7C4Q#egg=django-configurations-0.9-sbrantdb"
]
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
#import here, cause outside the eggs aren't loaded
import tox
errno = tox.cmdline(self.test_args)
sys.exit(errno)
setup(
name="rise",
version=version,
url='http://github.com/mainehackerclub/RISE_Survey',
license='BSD',
platforms=['OS Independent'],
description="Generate reporst from RISE Survey data.",
author="Colin Powell",
author_email='[email protected]',
packages=find_packages(),
install_requires=install_requires,
dependency_links=dep_links,
include_package_data=True,
zip_safe=False,
tests_require=['tox'],
cmdclass={'test': Tox},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
package_dir={
'rise': 'rise',
'rise/templates': 'rise/templates',
},
entry_points={
'console_scripts': [
'rise = rise.manage_rise:main',
],
},
)