forked from barseghyanartur/django-dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
243 lines (211 loc) · 8.66 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import os
import sys
from distutils.version import LooseVersion
from setuptools import find_packages, setup
version = '0.5.6'
# ***************************************************************************
# ************************** Python version *********************************
# ***************************************************************************
PY2 = sys.version_info[0] == 2
PY3 = sys.version_info[0] == 3
LTE_PY26 = PY2 and (7 > sys.version_info[1])
PYPY = hasattr(sys, 'pypy_translation_info')
# ***************************************************************************
# ************************** Django version *********************************
# ***************************************************************************
DJANGO_INSTALLED = False
try:
import django
DJANGO_INSTALLED = True
LOOSE_DJANGO_VERSION = LooseVersion(django.get_version())
LOOSE_DJANGO_MINOR_VERSION = LooseVersion(
'.'.join([str(i) for i in LOOSE_DJANGO_VERSION.version[0:2]])
)
# Loose versions
LOOSE_VERSIONS = (
'1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11', '2.0', '2.1',
'2.2', '3.0'
)
for v in LOOSE_VERSIONS:
var_name = 'LOOSE_VERSION_{0}'.format(v.replace('.', '_'))
globals()[var_name] = LooseVersion(v)
# Exact versions
EXACT_VERSIONS = LOOSE_VERSIONS[:-1]
for i, v in enumerate(EXACT_VERSIONS):
l_cur = globals()['LOOSE_VERSION_{0}' \
''.format(LOOSE_VERSIONS[i].replace('.', '_'))]
l_nxt = globals()['LOOSE_VERSION_{0}' \
''.format(LOOSE_VERSIONS[i + 1].replace('.', '_'))]
var_name = 'DJANGO_{0}'.format(v.replace('.', '_'))
globals()[var_name] = (l_cur <= LOOSE_DJANGO_VERSION < l_nxt)
# LTE list
LTE_VERSIONS = LOOSE_VERSIONS[:-1]
for i, v in enumerate(EXACT_VERSIONS):
l_cur = globals()['LOOSE_VERSION_{0}' \
''.format(LOOSE_VERSIONS[i].replace('.', '_'))]
var_name = 'DJANGO_LTE_{0}'.format(v.replace('.', '_'))
globals()[var_name] = (LOOSE_DJANGO_MINOR_VERSION <= l_cur)
# GTE list
GTE_VERSIONS = LOOSE_VERSIONS[:-1]
for i, v in enumerate(EXACT_VERSIONS):
l_cur = globals()['LOOSE_VERSION_{0}' \
''.format(LOOSE_VERSIONS[i].replace('.', '_'))]
var_name = 'DJANGO_GTE_{0}'.format(v.replace('.', '_'))
globals()[var_name] = (
LOOSE_DJANGO_MINOR_VERSION >= l_cur
)
except Exception as err:
pass
# ***************************************************************************
# **************************** Package data *********************************
# ***************************************************************************
try:
readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
screen_shots = open(
os.path.join(os.path.dirname(__file__), 'SCREENSHOTS.rst')
).read()
screen_shots = screen_shots.replace(
'.. image:: _static',
'.. figure:: https://github.com/barseghyanartur/django-dash/raw/'
'master/docs/_static'
)
except Exception:
readme = ''
screen_shots = ''
template_dirs = [
"src/dash/templates/dash", # Core templates
# Android layout
"src/dash/contrib/layouts/android/templates/android",
# Bootstrap 2 layouts
"src/dash/contrib/layouts/bootstrap2/templates/bootstrap2",
# Bootstrap 3 layouts
# "src/dash/contrib/layouts/bootstrap3/templates/bootstrap3",
# Windows 8 layout
"src/dash/contrib/layouts/windows8/templates/windows8",
"src/dash/contrib/plugins/dummy/templates/dummy", # Dummy plugin
"src/dash/contrib/plugins/image/templates/image", # Image plugin
"src/dash/contrib/plugins/memo/templates/memo", # Memo plugin
# "src/dash/contrib/plugins/news/templates/news", # News plugin
"src/dash/contrib/plugins/rss_feed/templates/rss_feed", # RSS feed plugin
"src/dash/contrib/plugins/url/templates/url", # URL plugin
"src/dash/contrib/plugins/video/templates/video", # Video plugin
"src/dash/contrib/plugins/weather/templates/weather", # Weather plugin
]
static_dirs = [
"src/dash/static", # Core static
"src/dash/contrib/layouts/android/static", # Android layout
"src/dash/contrib/layouts/bootstrap2/static", # Bootstrap 2 layouts
# "src/dash/contrib/layouts/bootstrap3/static", # Bootstrap 3 layouts
"src/dash/contrib/layouts/windows8/static", # Windows 8 layout
"src/dash/contrib/plugins/image/static", # Image plugin
# "src/dash/contrib/plugins/news/static", # News plugin
"src/dash/contrib/plugins/rss_feed/static", # RSS feed plugin
"src/dash/contrib/plugins/url/static", # URL plugin
"src/dash/contrib/plugins/video/static", # Video plugin
"src/dash/contrib/plugins/weather/static", # Weather plugin
]
locale_dirs = [
"src/dash/locale/nl",
"src/dash/locale/ru",
]
templates = []
static_files = []
locale_files = []
for template_dir in template_dirs:
templates += [os.path.join(template_dir, f)
for f in os.listdir(template_dir)]
for static_dir in static_dirs:
static_files += [os.path.join(static_dir, f)
for f in os.listdir(static_dir)]
for locale_dir in locale_dirs:
locale_files += [os.path.join(locale_dir, f)
for f in os.listdir(locale_dir)]
# ***************************************************************************
# ************************** Package versions *******************************
# ***************************************************************************
dependency_links = []
# If certain version of Django is already installed, choose version agnostic
# dependencies.
install_requires = [
'Pillow>=2.1.0',
'feedparser>=5.1.3',
'ordereddict>=1.1',
'pif>=0.5,<1.0',
'six>=1.9',
'transliterate>=1.5,<2.0',
'vishap>=0.1.3,<2.0',
'django-nine>=0.1.1',
'Unidecode',
]
if DJANGO_INSTALLED:
if DJANGO_LTE_1_6:
# install_requires.append('django-autoslug==1.7.1')
install_requires.append('django-autoslug-iplweb')
else:
# install_requires.append('django-autoslug>=1.9.3')
install_requires.append('django-autoslug-iplweb')
if DJANGO_GTE_1_8:
install_requires.append('django-tinymce>=2.0.0')
else:
install_requires.append('django-tinymce>=1.5.3,<2.0.0')
if DJANGO_GTE_1_11:
install_requires.append('easy-thumbnails>=2.4.1')
# install_requires.append('easy-thumbnails')
# dependency_links.append(
# 'https://github.com/SmileyChris/easy-thumbnails/archive/'
# 'master.tar.gz'
# '#egg=easy-thumbnails'
# )
elif PY3:
install_requires.append('easy-thumbnails>=2.3')
else:
install_requires.append('easy-thumbnails>=1.4')
else:
# We consider Django 1.8 as a default.
# install_requires.append('django-autoslug>=1.9.3')
install_requires.append('django-autoslug-iplweb')
install_requires.append('django-tinymce>=2.0.0')
install_requires.append('easy-thumbnails>=1.4')
tests_require = [
'radar>=0.3,<1.0',
'selenium',
]
# ***************************************************************************
# ******************************** Setup ************************************
# ***************************************************************************
setup(
name='django-dash',
version=version,
description="Customisable, modular dashboard application framework "
"for Django.",
long_description="{0}{1}".format(readme, screen_shots),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"License :: OSI Approved :: GNU Lesser General Public License v2 "
"or later (LGPLv2+)",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
keywords='dashboard, django, django dashboard',
author='Artur Barseghyan',
author_email='artur.barseghyan@gmail.com',
url='https://github.com/barseghyanartur/django-dash/',
package_dir={'': 'src'},
packages=find_packages(where='./src'),
license='GPL 2.0/LGPL 2.1',
install_requires=install_requires,
tests_require=tests_require,
dependency_links=dependency_links,
package_data={
'dash': templates + static_files + locale_files
},
include_package_data=True,
)