forked from onepercentclub/bluebottle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·135 lines (121 loc) · 3.87 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
#!/usr/bin/env python
import os
import sys
import bluebottle
from setuptools import setup, find_packages
def read_file(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
readme = read_file('README.rst')
changes = ''
install_requires = [
'Babel==1.3',
'bunch==1.0.1',
'Django==1.5.5',
'Pillow==2.3.0',
'South==0.8.1',
'Sphinx==1.2b1',
'django-admin-tools==0.5.1', # for now replaced by fork
'django-apptemplates==0.0.1',
'django-choices==1.1.11',
'django-compressor==1.3',
'ember-compressor-compiler==0.3.1',
'django-extensions==1.1.1',
'django-filetransfers==0.0.0',
'django-filter==0.6',
'django-fluent-contents==0.9a1', # Version 1.0b1 and up breaks our code
'django-iban==0.2.1',
'django-localflavor==1.0',
'django-registration==1.0',
'django-social-auth==0.7.23',
'django-statici18n==0.4.5',
'django-taggit==0.10a1',
'django-taggit-autocomplete-modified==0.1.0b4',
'django-templatetag-handlebars==1.2.0',
'django-tinymce==1.5.1b2',
'django-uuidfield==0.5.0',
'django-wysiwyg==0.5.1',
'django-dynamic-fixture==1.8.0',
'djangorestframework==2.3.12',
'dkimpy==0.5.4',
'html5lib==0.95',
'micawber==0.2.6',
'mock==1.0.1',
'requests==2.3.0',
'sorl-thumbnail==11.12',
'splinter==0.6.0',
'transifex-client==0.9.1',
'django-tools==0.25.0',
'django-loginas==0.1.3',
'pygraphviz==1.2',
'beautifulsoup4==4.3.2',
'djangorestframework-jwt==1.0.2',
'psycopg2==2.2.1',
'requests==2.3.0',
'django-fsm==1.6.0',
'suds-jurko==0.6',
'django-ipware==0.0.8',
'pygeoip==0.3.1'
]
dependency_links = [
'https://github.com/GetBlimp/django-rest-framework-jwt/archive/b6b42b967c3584b426446df1f72149b7a07fd520.zip#egg=djangorestframework-jwt-1.0.2',
'https://github.com/onepercentclub/django-salesforce/archive/1e54beb7bcc15a893e9590fb27cbf08853da5599.zip#egg=django-salesforce-0.1.6.3',
'https://bitbucket.org/wkornewald/django-filetransfers/get/32ddeac.zip#egg=django-filetransfers-0.0.0',
'https://bitbucket.org/sergei_maertens/django-admin-tools/get/c989fd1.zip#egg=django-admin-tools-0.5.1',
]
tests_require = [
'South==0.8.1',
'coverage==3.6',
'django-nose',
'django-admin-tools==0.5.1',
'django-apptemplates==0.0.1',
'django_compressor==1.2',
'django-fluent-contents==0.9a1',
'django-filetransfers==0.0.0',
'django-localflavor==1.0',
'django-registration==1.0',
'django-setuptest==0.1.4',
'django-social-auth==0.7.23',
'django-taggit==0.10a1',
'django-templatetag-handlebars==1.2.0',
'django-tinymce==1.5.1b2',
'django-tools==0.25.0',
'django-wysiwyg==0.5.1',
'djangorestframework==2.3.12',
'factory-boy==2.3.1',
'micawber==0.2.6',
'mock==1.0.1',
'nose==1.3.4',
'pylint==1.1.0',
'sauceclient==0.1.0',
'selenium==2.44.0',
'sorl-thumbnail==11.12',
'splinter==0.6.0',
'tdaemon==0.1.1',
]
setup(
name='bluebottle',
version='.'.join(map(str, bluebottle.__version__)),
license='BSD',
# Packaging.
packages=find_packages(exclude=('tests', 'tests.*')),
install_requires=install_requires,
dependency_links=dependency_links,
tests_require=tests_require,
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 :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
],
)