forked from plone/plone.app.querystring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (67 loc) · 2.04 KB
/
setup.py
File metadata and controls
70 lines (67 loc) · 2.04 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '1.4.14.dev0'
long_description = open("README.rst").read() + "\n"
long_description += open("CHANGES.rst").read()
setup(
name='plone.app.querystring',
version=version,
description=(
"A queryparser, querybuilder and extra helper tools, to "
"parse stored queries to actual results, used in "
"new style Plone collections"),
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
"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",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords='collection queries',
author='Plone Foundation',
author_email='plone-developers@lists.sourceforge.net',
url='https://github.com/plone/plone.app.querystring',
license='GPL version 2',
packages=find_packages(),
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'DateTime',
'Products.CMFCore',
'Products.CMFPlone',
'plone.app.contentlisting',
'plone.app.layout',
'plone.app.registry>=1.1dev',
'plone.app.vocabularies',
'plone.batching',
'plone.registry',
'python-dateutil',
'setuptools',
'six',
'zope.component',
'zope.dottedname',
'zope.globalrequest',
'zope.i18n',
'zope.i18nmessageid',
'zope.interface',
'zope.publisher',
'zope.schema',
],
extras_require={
'test': [
'plone.app.testing',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)