-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.37 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2008 Jacinto Ximénez de Guzmán
#
# Code licensed under the MIT License. See COPYING or
# http://www.opensource.org/licenses/mit-license.php
# for details.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from couchdbsolr2.version import version
setup(
name='CouchDB-Solr2',
description='FTI/FTS support for CouchDB',
long_description=\
"""Provides integration with Solr for full-text indexing and searching within
CouchDB.""",
url='http://github.com/deguzman/couchdb-solr2/tree/master',
version=version,
author='Jacinto Ximénez de Guzmán',
author_email='[email protected]',
license='MIT',
install_requires=['amqplib', 'httplib2', 'threadpool >= 1.2.4'],
packages=['couchdbsolr2'],
entry_points={
'console_scripts' : [
'couchdb-solr2-index = couchdbsolr2.index:main',
'couchdb-solr2-update = couchdbsolr2.update:main',
'couchdb-solr2-query = couchdbsolr2.query:main',
]
},
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Text Processing :: Indexing',
],
)