-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
executable file
·201 lines (187 loc) · 5.7 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/usr/bin/env python
# flake8: noqa
import os
import sys
from setuptools import setup, find_packages
import bluebottle
def read_file(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
readme = read_file('README.rst')
changes = ''
install_requires = [
'Babel==2.9.1',
'Django==3.2.20',
'Pillow==8.3.0',
'South==1.0.2',
'South==1.0.2',
'Sphinx==4.1.2',
'SurveyGizmo==1.2.2',
'bcrypt==3.2.0',
'beautifulsoup4==4.12.2',
'bleach==3.3.0',
'celery==4.3',
'clamd==1.0.2',
'defusedxml==0.6.0',
'django-admin-inline-paginator==0.2',
'django-admin-sortable==2.2.1',
'django-admin-tools==0.8.1',
'django-adminfilters==1.4.1',
'django-appconf==1.0.3',
'django-axes==5.14.0',
'django-better-admin-arrayfield==1.4.2',
'django-choices==1.7.1',
'django-colorfield==0.5.0',
'django-cors-headers==3.7.0',
'django-daterange-filter==1.3.0',
'django-dynamic-fixture==1.9.5',
'django-elasticsearch-dsl==7.4',
'django-extensions==1.7.9',
'django-filter==2.4.0',
'django-fluent-contents==3.0',
'django-fluent-dashboard==1.0a1',
'django-fsm==2.5.0',
'django-hashers-passlib==0.3',
'django-ipware==3.0.2',
'django-jet2==1.0.12',
'django-localflavor==3.0.1',
'django-lockdown==1.4.2',
'django-loginas==0.3.2',
'django-map-widgets==0.5.1',
'django-memoize==2.3.1',
'django-money==1.3.1',
'django-multiselectfield==0.1.12',
'django-nested-inline==0.4.2',
'django-otp==1.2.0',
'django-parler==2.1',
'django-permissions-widget==1.5.2',
'django-recaptcha==2.0.6',
'django-rest-polymorphic==0.1.8',
'django-rest-swagger==2.1.2',
'django-solo==1.1.5',
'django-subquery==1.0.4',
'django-summernote==0.8.20.0',
'django-taggit==1.3.0',
'django-tenant-schemas==1.11.0',
'django-tinymce==2.7.0',
'django-tools==0.48.3',
'django-two-factor-auth[phonenumbers]==1.15.2',
'django-uuidfield==0.5.0',
'django-wysiwyg==0.8.0',
'django_polymorphic==3.1.0',
'djangorestframework-jsonapi==4.2.1',
'djangorestframework==3.12.4',
'dkimpy==1.0.5',
'dotted==0.1.8',
'drf-jwt==1.19.0',
'elasticsearch-dsl==7.4.1',
'elasticsearch==7.17.9',
'geocoder==1.37.0',
'geopy==2.1.0',
'html2text==2020.1.16',
'gunicorn==19.10.0',
'html5lib==1.1',
'icalendar==4.0.4',
'importlib_resources==5.12.0',
'influxdb==4.1.1',
'lipisha==0.3.0',
'lxml==5.2.2',
'micawber==0.5.2',
'mixpanel==4.3.2',
'munch==2.5.0',
'openpyxl==2.4.8',
'passwordmeter==0.1.8',
'pendulum==1.2.4',
'premailer==3.9.0',
'psycopg2-binary==2.8.6',
'py-moneyed==0.8',
'pyasn1==0.4.2',
'pygeoip==0.3.2',
'pyjwt==2.8.0',
'pyparsing==3.0.9',
'python-dateutil==2.6.1',
'python-magic==0.4.15',
'python-memcached==1.58',
'python-social-auth==0.3.6',
'python3-saml==1.9.0',
'rave-python==1.0.2',
'raven==6.1.0',
'regex==2017.05.26',
'requests==2.24.0',
'schwifty==2.1.0',
'scss==0.8.73',
'social-auth-core==4.3.0',
'social-auth-app-django==4.0.0',
'sorl-thumbnail==12.6.3',
'staticmaps-signature==0.2.0',
'stripe==10.2.0',
'surlex==0.2.0',
'tablib==0.14.0',
'timezonefinder==3.4.2',
'unicodecsv==0.14.1',
'wcag-contrast-ratio==0.9',
'wheel==0.29.0',
'xlrd==1.2.0',
'xlsxwriter==0.9.8',
'xmlsec==1.3.14',
# Github requirements
'django-exportdb@git+https://github.com/onepercentclub/[email protected]#egg=django-exportdb-0.4.8-github',
'django-tenant-extras@git+https://github.com/onepercentclub/django-tenant-extras.git@1ac34b9c0760c75be59f461ce231411346688824#egg=django-tenant-extras-2.0.17',
'django-fluent-contents@git+https://github.com/onepercentclub/django-fluent-contents.git@27f309c7b54bdfa4fada4a8a2d9ae744e967bc31#egg=django-fluent-contents-27f309',
'django-taggit-autocomplete-modified@git+https://github.com/onepercentclub/django-taggit-autocomplete-modified.git@8e7fbc2deae2f1fbb31b574bc8819d9ae7c644d6#egg=django-taggit-autocomplete-modified-0.1.1b1',
]
tests_requires = [
'coveralls==3.2.0',
'django-nose==1.4.4',
'django-setuptest==0.2.1',
'django-slowtests==0.5.1',
'django-webtest==1.9.7',
'factory-boy==2.12.0',
'httmock==1.2.6',
'mock==4.0.2' if sys.version_info.major == 3 else 'mock==3.0.5',
'nose==1.3.7',
'pylint==2.7.0',
'pyquery==1.2.17',
'pylint-django==2.4.4',
'tblib==1.3.2',
'tdaemon==0.1.1',
'WebTest==2.0.27',
'sniffer==0.4.0',
'vine==1.3.0',
'Faker==12.3.3'
]
dev_requires = [
'ipdb',
'flake8'
]
setup(
name='bluebottle',
version=bluebottle.__version__,
license='BSD',
# Packaging.
packages=find_packages(exclude=('tests', 'tests.*')),
install_requires=install_requires,
# You can install these using the following syntax, for example:
# $ pip install -e .[dev,test]
extras_require={
'dev': dev_requires,
'test': tests_requires,
},
include_package_data=True,
zip_safe=False,
# Metadata for PyPI.
description='Bluebottle, the crowdsourcing framework initiated by the 1%Club.',
long_description='\n\n'.join([readme, changes]),
author='1%Club',
author_email='[email protected]',
platforms=['any'],
url='https://github.com/onepercentclub/bluebottle',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Application Frameworks'
]
)