-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
88 lines (71 loc) · 2.66 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
82
83
84
85
86
87
88
#! /usr/bin/env python
# (C) Copyright 2007 Nuxeo SAS <http://nuxeo.com>
# Author: [email protected]
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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.
#
#
"""PLUSH = Python LUcene SHell
$Id: setup.py 51526 2007-04-12 08:33:59Z bdelbosc $
"""
from distutils.core import setup
from plush.version import __version__
from tests.distutilstestcommand import TestCommand
setup(
name="plush",
version=__version__,
description="Python LUcene SHell.",
long_description="""\
A simple Lucene interactive terminal.
Main features:
* View store information.
* View indexes definition.
* Search using the Lucene Query Parser Syntax.
* Sort result list.
* Browse by document number.
* Top term occurences for a field, matching a regex.
* Support PyLucene 1.9.1, 2.0.0 and 2.1.0.
* Interactive shell emacs like command history and editing features.
* Command line tool and thus scriptable.
* Easy installation, no java required.
* Plush is free software distributed under the GNU GPL.
* Plush is written in python and can be easily customized.
""",
author="Benoit Delbosc",
author_email="[email protected]",
url="http://public.dev.nuxeo.com/~ben/plush/",
download_url="http://public.dev.nuxeo.com/~ben/plush/plush-%s.tar.gz"%__version__,
license='GPL',
packages=['plush'],
package_dir={'plush': 'plush'},
scripts=['scripts/plush',
],
keywords='Lucene Pylucene command line shell terminal tool',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Software Development :: Testing',
'Topic :: Software Development',
'Topic :: Utilities',
],
cmdclass = { 'test': TestCommand,}
)