-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
50 lines (47 loc) · 1.57 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
from setuptools import find_packages
from setuptools import setup
version = '2.1.1-dev.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.rst').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/collective/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',
'zope.container',
'zope.event',
'zope.lifecycleevent',
'zope.publisher',
'Zope2 >= 2.13',
],
extras_require = {
'test': [
'plone.app.testing',
]
},
entry_points = """
[z3c.autoinclude.plugin]
target = plone
""",
)