-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
39 lines (37 loc) · 904 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='lightstep',
version='4.4.8',
description='LightStep Python OpenTracing Implementation',
long_description='',
author='LightStep',
license='',
install_requires=[
'thrift>=0.13.0',
'jsonpickle',
'six',
'basictracer>=3.0,<4',
'googleapis-common-protos>=1.5.3,<2.0',
'requests>=2.19,<3.0',
'protobuf>=3.6.0,<4.0'
],
tests_require=[
'pytest',
'sphinx',
'sphinx-epytext',
'ipdb'
],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
],
keywords=[
'opentracing',
'lightstep',
'traceguide',
'tracing',
'microservices',
'distributed'
],
packages=find_packages(exclude=['docs*', 'tests*', 'sample*']),
)