forked from sahu-dharani/mogopysolr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 765 Bytes
/
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
from distutils.core import setup
setup(
name = "pysolr",
version = "2.1.0-beta",
description = "Lightweight python wrapper for Apache Solr.",
author = 'Daniel Lindsley',
author_email = '[email protected]',
long_description=open('README', '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'
],
url = 'https://github.com/dsahu-iserviceglobe/mogopysolr.git',
extra_requires={
'tomcat': ['BeautifulSoup'],
}
)