forked from opentracing-contrib/python-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.08 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
from setuptools import setup
version = open('VERSION').read()
setup(
name='redis_opentracing',
version=version,
url='https://github.com/opentracing-contrib/python-redis/',
download_url='https://github.com/opentracing-contrib/python-redis/tarball/'+version,
license='Apache License 2.0',
author='Carlos Alberto Cortez',
author_email='[email protected]',
description='OpenTracing support for Elasticsearch',
long_description=open('README.rst').read(),
packages=['redis_opentracing'],
platforms='any',
install_requires=[
'redis',
'opentracing>=2.0,<2.1'
],
extras_require={
'tests': [
'flake8<3',
'flake8-quotes',
'mock<1.1.0',
'pytest>=2.7,<3',
'pytest-cov',
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)