-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
97 lines (94 loc) · 3.33 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
##############################################################################
# Copyright (c) 2009 Novell, All rights reserved.
# Portions copyright 2009 Massachusetts Institute of Technology,
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
##############################################################################
from setuptools import setup, find_packages
version = "8.3.1.dev0"
setup(
name="collective.searchandreplace",
version=version,
description="Batch Search and Replace",
long_description=(open("README.rst").read() + "\n" + open("CHANGES.rst").read()),
# Get more strings from https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Plone :: 6.0",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"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="batch search replace",
author="enPraxis",
author_email="[email protected]",
maintainer="Maurits van Rees",
maintainer_email="[email protected]",
url="https://github.com/collective/collective.searchandreplace",
license="GPL",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["collective"],
include_package_data=True,
zip_safe=False,
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*",
install_requires=[
"Acquisition",
"plone.api",
"plone.app.layout",
"plone.app.textfield",
"plone.autoform",
"plone.resource",
"Products.CMFCore",
"Products.CMFPlone",
"Products.statusmessages",
"setuptools",
"Zope2",
"z3c.form",
"zope.component",
"zope.contentprovider",
"zope.i18nmessageid",
"zope.interface",
"zope.publisher",
"zope.schema",
],
extras_require=dict(
test=[
"collective.dexteritytextindexer",
"plone.app.testing",
],
pytest=[
"pytest",
"gocept.pytestlayer",
"pathlib2",
"requests",
],
),
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)