-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·83 lines (78 loc) · 2.74 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = '3.4.10.dev0'
setup(name='collective.plonetruegallery',
version=version,
description="A gallery/slideshow product for Plone that can aggregate "
"from Picasa (add collective.ptg.flickr) and Flickr (add collective.ptg.flickr) or use Plone images.",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Plone :: 4.1',
'Framework :: Plone :: 4.2',
'Framework :: Plone :: 4.3',
'Framework :: Plone',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='gallery plone slideshow photo photos image images picasa '
'flickr highslide nivoslider nivogallery pikachoose fancybox supersized quicksand'
'galleriffic galleria',
author='Nathan Van Gheem',
author_email='vangheem@gmail.com',
url='https://github.com/collective/collective.plonetruegallery',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'collective.ptg.galleria',
'plone.app.collection',
'plone.app.contentmenu',
'plone.app.contenttypes',
'plone.app.form',
'plone.app.imaging',
'plone.app.portlets',
'plone.app.querystring',
'plone.app.vocabularies',
'plone.app.z3cform',
'plone.api',
'plone.folder',
'plone.memoize',
'plone.portlets',
'plone.uuid',
'plone.z3cform',
'Products.Archetypes',
'Products.ATContentTypes',
'Products.CMFCore',
'Products.CMFPlone >=4.1',
'Products.GenericSetup',
'setuptools',
'transaction',
'z3c.form',
'zope.component',
'zope.i18nmessageid',
'zope.interface',
'zope.schema',
],
extras_require={
'test': [
'plone.app.testing',
'plone.testing',
'unittest2',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
"""
)