-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
61 lines (59 loc) · 1.99 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '1.2.9.dev0'
setup(name='plone.app.collection',
version=version,
description="This package adds 'saved search' functionality to Plone.",
long_description=(open("README.rst").read() + "\n" +
open("CHANGES.rst").read()),
classifiers=[
"Development Status :: 6 - Mature",
"Framework :: Plone",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Plone :: Core",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords='plone collection topic smartfolder saved search',
author='Plone Foundation',
url='https://pypi.org/project/plone.app.collection',
license='GPL version 2',
packages=find_packages(),
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.contentlisting',
'plone.app.portlets',
'plone.app.querystring>=1.2.2', # custom_query support
'plone.app.vocabularies',
'plone.app.widgets',
'plone.portlet.collection',
'plone.portlets',
'Products.Archetypes>=1.10.4.dev0',
'Products.CMFCore',
'Products.CMFPlone',
'Products.validation',
'transaction',
'zope.component',
'zope.configuration',
'zope.i18nmessageid',
'zope.interface',
'zope.schema',
'Zope2',
],
extras_require={
'test': [
'plone.app.testing [robot]',
'Products.ATContentTypes [test]',
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)