forked from collective/collective.searchandreplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
81 lines (77 loc) · 2.82 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
##############################################################################
# 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
#
##############################################################################
__author__ = '''Brent Lambert, David Ray, Jon Thomas'''
__version__ = '$ Revision 0.0 $'[11:-2]
from setuptools import setup, find_packages
version = '6.0.2.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.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='batch search replace',
author='enPraxis',
author_email='info@enpraxis.net',
maintainer='Maurits van Rees',
maintainer_email='m.van.rees@zestsoftware.nl',
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,
install_requires=[
'Acquisition',
'five.formlib',
'plone.app.layout',
'plone.app.textfield',
'Products.CMFCore',
'Products.CMFPlone',
'Products.statusmessages',
'setuptools',
'Zope2',
'zope.component',
'zope.formlib',
'zope.i18nmessageid',
'zope.interface',
'zope.publisher',
'zope.schema',
],
extras_require={
'test': [
'Products.PloneTestCase',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)