forked from plone/collective.indexing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.48 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
from setuptools import setup, find_packages
version = '2.0'
setup(name = 'collective.indexing',
version = version,
description = 'Abstract framework for queueing, optimizing and '
'dispatching index operations for Plone content.',
long_description = open("README.rst").read() + '\n' +
open('CHANGES.txt').read(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Plone',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords = 'plone cmf zope indexing queueing catalog asynchronous',
author = 'Plone Foundation',
author_email = '[email protected]',
url = 'https://github.com/Jarn/collective.indexing',
license = 'GPL',
packages = find_packages('src'),
package_dir = {'': 'src'},
namespace_packages = ['collective'],
include_package_data = True,
platforms = 'Any',
zip_safe = False,
install_requires = [
'setuptools',
'plone.app.testing',
'unittest2',
'zope.container',
'zope.event',
'zope.lifecycleevent',
'zope.publisher',
'Zope2 >= 2.13',
],
entry_points = '''
[z3c.autoinclude.plugin]
target = plone
''',
)