forked from piotrkilczuk/cmsplugin_gallery
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·19 lines (17 loc) · 707 Bytes
/
setup.py
File metadata and controls
executable file
·19 lines (17 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='cmsplugin_gallery_filer',
version='0.5.2.1',
author='GISA Elkartea',
author_email='kontaktua@gisa-elkartea.org',
url='http://lagunak.gisa-elkartea.org/projects/cmsplugin-gallery-filer',
description = 'DjangoCMS image gallery plugin with drag&drop '
'reordering in admin, support for thumbnails and '
'jQueryTOOLS overlay. Fork to use django-filer',
packages=find_packages(),
provides=['cmsplugin_gallery', ],
include_package_data=True,
install_requires = ['django-inline-ordering>=0.1.1', 'easy-thumbnails',
'django-filer']
)