-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
41 lines (38 loc) · 1.26 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = '2.5.1'
setup(
name='tornadoes',
version=VERSION,
description="A tornado-powered python library that provides asynchronous access to elasticsearch.",
long_description="""\
A tornado-powered python library that provides asynchronous access to elasticsearch.""",
author='Team Search of globo.com',
author_email='[email protected]',
url='http://github.com/globocom/tornado-es',
download_url='http://github.com/globocom/tornado-es',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'testes']),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: OS Independent',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
],
include_package_data=True,
zip_safe=True,
install_requires=[
'tornado>=3.0.0',
'six>=1.7.3',
],
tests_require=[
'unittest2',
'nose'
],
dependency_links=[],
)