forked from uber-common/opentracing-python-instrumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (59 loc) · 1.92 KB
/
setup.py
File metadata and controls
61 lines (59 loc) · 1.92 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='opentracing_instrumentation',
version='2.4.4.dev0',
author='Yuri Shkuro',
author_email='ys@uber.com',
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.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'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,<5',
'contextlib2',
'opentracing>=1.1,<2',
'six',
],
extras_require={
'tests': [
'coveralls',
'doubles',
'flake8<3', # see https://github.com/zheller/flake8-quotes/issues/29
'flake8-quotes',
'mock<1.1.0',
'psycopg2>=2.4.0',
'sqlalchemy>=1.2.0',
'pytest>=3.0.0',
'pytest-cov',
'pytest-localserver',
'pytest-mock',
'pytest-tornado',
'basictracer>=2.1,<2.2',
'redis',
'Sphinx',
'sphinx_rtd_theme',
]
},
)