forked from condorcet/opentracing-python-instrumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (64 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='opentracing_instrumentation',
version='3.3.2.dev0',
author='Yuri Shkuro',
author_email='[email protected]',
description='Tracing Instrumentation using OpenTracing API '
'(http://opentracing.io)',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/uber-common/opentracing-python-instrumentation',
keywords=['opentracing'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'future',
'wrapt',
'tornado>=4.1,<6',
'contextlib2',
'opentracing>=2,<3',
'six',
],
extras_require={
'tests': [
'boto3',
'botocore',
'celery',
'doubles',
'flake8',
'flake8-quotes',
'mock',
'moto',
'MySQL-python; python_version=="2.7"',
'psycopg2-binary',
'sqlalchemy>=1.3.7',
'pytest',
'pytest-cov',
'pytest-localserver',
'pytest-mock',
'pytest-tornado',
'basictracer>=3,<4',
'redis',
'Sphinx',
'sphinx_rtd_theme',
'testfixtures',
]
},
)