-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
54 lines (48 loc) · 1.53 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
#!/usr/bin/env python3
# coding: utf-8
"""Wavefront Python SDK.
This is a Wavefront Python SDK.
"""
import os
import setuptools
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md')) as fd:
LONG_DESCRIPTION = fd.read()
setuptools.setup(
name='wavefront-opentracing-sdk-python',
version='2.3.4',
author='Tanzu Observability by Wavefront',
author_email='chitimba@wavefront.com',
url='https://github.com/wavefrontHQ/wavefront-opentracing-sdk-python',
license='Apache-2.0',
description='Tanzu Observability Opentracing SDK for Python.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords=[
'OpenTracing',
'OpenTracing SDK',
'Wavefront',
'Wavefront SDK',
'Tanzu Observability',
'Tanzu Observability SDK'
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
include_package_data=True,
packages=setuptools.find_packages(exclude=('*.tests', '*.tests.*',
'tests.*', 'tests')),
install_requires=[
'opentracing>=2.0',
'wavefront-pyformance>=1.3',
'wavefront-sdk-python>=1.8.0',
],
test_require=[
'freezegun>=0.3.11',
'mock>=2.0',
],
)