forked from Alir3z4/cmsplugin-filery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (45 loc) · 1.41 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
from distutils.core import setup
setup(
name='cmsplugin-filery',
version=".".join(map(str, __import__('cmsplugin_filery').__version__)),
author='Alireza Savand',
author_email='[email protected]',
url='http://pypi.python.org/pypi/cmsplugin-filery',
description = 'Image gallery based on django-filer',
long_description=open('README.rst').read(),
license='LICENSE',
keywords=[
'django',
'django-cms',
'web',
'cms',
'cmsplugin',
'plugin',
'image',
'gallery',
],
packages=['cmsplugin_filery', 'cmsplugin_filery.migrations'],
package_dir={'cmsplugin_filery': 'cmsplugin_filery'},
package_data={'cmsplugin_filery': ['templates/*/*']},
provides=['cmsplugin_filery'],
include_package_data=True,
install_requires = [
'django',
'django-cms',
'easy-thumbnails',
'django-filer'
],
platforms='OS Independent',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development'
],
)