forked from collective/collective.plonetruegallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.51 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
from setuptools import setup, find_packages
import os
version = "2.3.1"
setup(name='collective.plonetruegallery',
version=version,
description="A gallery/slideshow product for plone that can aggregate "
"from picasa and flickr or use plone images.",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='gallery plone slideshow photo photos image images picasa '
'flickr highslide nivoslider nivogallery pikachoose fancybox '
'galleriffic galleria',
author='Nathan Van Gheem',
author_email='[email protected]',
url='http://www.plone.org/products/plone-true-gallery',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.z3cform',
'collective.js.galleria>=1.1'
],
extras_require=dict(
tests=[
'flickrapi',
'gdata',
],
flickr=['flickrapi'],
picasa=['gdata'],
all=['flickrapi', 'gdata']
),
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
"""
)