-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
74 lines (69 loc) · 2 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
# -*- coding: utf-8 -*-
"""Installer for the ftw.solr package."""
from setuptools import find_packages
from setuptools import setup
import os
long_description = '\n\n'.join([
open('README.rst').read(),
open(os.path.join("docs", "HISTORY.txt")).read(),
])
tests_require = [
'plone.app.testing',
'plone.app.dexterity',
'plone.testing',
'plone.api',
'plone.app.contenttypes',
'pytz',
'mock',
'ftw.testing',
]
setup(
name='ftw.solr',
version='2.13.4.dev0',
description="Solr integration for Plone",
long_description=long_description,
# Get more from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
keywords='Plone Solr',
author='Thomas Buchberger',
author_email='[email protected]',
url='https://pypi.python.org/pypi/ftw.solr',
license='GPL version 2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ftw'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'setuptools',
'plone.app.contentlisting',
'plone.app.layout',
'plone.namedfile[blobs]',
'ftw.upgrade',
'six >= 1.12.0',
],
extras_require=dict(
test=tests_require,
tests=tests_require,
cindexing=['collective.indexing'],
),
entry_points="""
[z3c.autoinclude.plugin]
target = plone
[zopectl.command]
solr = ftw.solr.commands:solr
""",
)