forked from izimobil/djangocms-unitegallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·67 lines (57 loc) · 1.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
from djangocms_unitegallery import __version__
INSTALL_REQUIRES = [
'django>=1.7',
'django-cms>=3.0',
# 'sorl-thumbnail>=12.0', # this should be done manually
]
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
]
if sys.version_info >= (3, 0):
enc = {'encoding': 'UTF-8'}
else:
enc = {}
long_desc = r'''
%s
%s
''' % (open('README.rst', **enc).read(), open('CHANGELOG.rst', **enc).read())
setup(
name='djangocms-unitegallery',
version=__version__,
description='unitegallery grid Plugin for django CMS',
author='David Jean Louis',
author_email='[email protected]',
url='https://github.com/izimobil/djangocms-unitegallery',
packages=[
'djangocms_unitegallery',
'djangocms_unitegallery.migrations',
],
install_requires=INSTALL_REQUIRES,
license='LICENSE.txt',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
long_description=open('README.rst').read(),
include_package_data=True,
zip_safe=False
)