forked from collective/collective.solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (77 loc) · 2.41 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
from setuptools import setup, find_packages
version = '4.1.1.dev0'
long_description = \
open("README.rst").read() + '\n' + open('CHANGES.rst').read()
setup(
name='collective.solr',
version=version,
description='Solr integration for external indexing and searching.',
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Plone',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='plone cmf zope indexing searching solr lucene',
author='Jarn AS',
author_email='[email protected]',
url='http://plone.org/products/collective.solr',
license='GPL version 2',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['collective'],
include_package_data=True,
platforms='Any',
zip_safe=False,
install_requires=[
'Acquisition',
'DateTime',
'Plone >= 4.1',
'Products.Archetypes',
'Products.CMFCore',
'Products.CMFDefault',
'Products.GenericSetup',
'Unidecode',
'ZODB3',
'Zope2 >= 2.13',
'archetypes.schemaextender',
'collective.indexing >= 2.0a2',
'collective.js.showmore',
'plone.app.content',
'plone.app.controlpanel',
'plone.app.layout',
'plone.app.testing',
'plone.app.vocabularies',
'plone.browserlayer',
'plone.indexer',
'setuptools',
'transaction',
'zope.component',
'zope.formlib',
'zope.i18nmessageid',
'zope.interface',
'zope.publisher',
'zope.schema',
],
extras_require={
'test': [
'Products.LinguaPlone >=3.1a1',
'plone.app.contentlisting', # Comes with Plone 4.2,
# only a test req for 4.1 compat
]
},
entry_points='''
[z3c.autoinclude.plugin]
target=plone
[zopectl.command]
solr_clear_index=collective.solr.commands:solr_clear_index
''',
)