-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
32 lines (31 loc) · 1.24 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
import setuptools
setuptools.setup(
name='tornado_elasticsearch',
version='0.5.0',
description=('Extends the official Elasticsearch Python API adding '
'Tornado AsyncHTTPClient support'),
long_description=open('README.rst').read(),
author='Gavin M. Roy',
author_email='gavinmroy@gmail.com',
url='https://github.com/gmr/tornado_elasticsearch',
py_modules=['tornado_elasticsearch'],
install_requires=['elasticsearch', 'tornado'],
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries'
],
zip_safe=True)