File: setup.py

package info (click to toggle)
python-pysolr 3.8.1-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 312 kB
  • sloc: python: 1,704; sh: 166; makefile: 23
file content (38 lines) | stat: -rw-r--r-- 1,047 bytes parent folder | download | duplicates (2)
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
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup


setup(
    name="pysolr",
    use_scm_version=True,
    description="Lightweight python wrapper for Apache Solr.",
    author='Daniel Lindsley',
    author_email='daniel@toastdriven.com',
    long_description=open('README.rst', 'r').read(),
    py_modules=[
        'pysolr'
    ],
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
    ],
    url='https://github.com/django-haystack/pysolr/',
    license='BSD',
    install_requires=[
        'requests>=2.9.1'
    ],
    extras_require={
        'solrcloud': [
    	    'kazoo==2.2'
        ]
    },
    setup_requires=['setuptools_scm'],
)