-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
99 lines (92 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from setuptools import find_packages
from setuptools import setup
import os
version = "5.2.2.dev0"
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()
setup(
name="collective.collectionfilter",
version=version,
description="Plone addon for filtering collection results.",
long_description="{}\n\n{}".format(
read("README.rst"),
read("CHANGES.rst"),
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: 6.0",
"Framework :: Plone :: Addon",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="plone collection filter faceted tagcloud tags",
author="Johannes Raggam",
author_email="[email protected]",
url="http://github.com/collective/collective.collectionfilter",
license="GPL",
namespace_packages=[
"collective",
],
python_requires=">=3.8",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=[
"setuptools",
"plone.api >= 2.0.0",
"plone.app.contenttypes",
"plone.app.event",
"plone.app.querystring",
"plone.app.uuid",
"plone.app.vocabularies",
"plone.app.z3cform",
"plone.autoform",
"plone.base",
"plone.dexterity",
"plone.i18n",
"plone.memoize",
"plone.portlets",
"plone.supermodel",
"plone.uuid",
"z3c.form",
"Products.CMFCore",
"Products.CMFPlone >= 6.0",
],
extras_require={
"mosaic": [
"plone.app.mosaic >= 3.0.0",
],
"geolocation": [
# support for latitude/longitude catalog index
"collective.geolocationbehavior >= 1.7.2",
# refactored map configuration
"plone.formwidget.geolocation >= 3.0.0",
],
"test": [
"plone.app.mosaic",
"plone.browserlayer",
"plone.testing",
"robotsuite",
"collective.geolocationbehavior",
"plone.app.testing[robot]",
"plone.app.robotframework",
"plone.app.contenttypes",
"plone.app.portlets",
"plone.app.textfield",
"plone.tiles",
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)