-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
29 lines (25 loc) · 910 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
24
25
26
27
28
29
# bootstrap easy_install
from setuptools import setup, find_packages
try:
import ez_setup
ez_setup.use_setuptools()
except:
pass
with open('README.md') as f:
long_description = f.read()
__version__ = '1.0.0'
setup(
name='solrpy',
# We can do this because we don't rely on getting "built" to be importable:
version=__version__, # update only solr.core.__version__
url='http://github.com/search5/solrpy',
license='http://opensource.org/licenses/apache2.0.php',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
install_requires=["future", "six", "pyyaml"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
description='Client for the Solr search service',
tests_require=["future", "six", "nose>=0.10.1"],
test_suite='nose.collector'
)