-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
61 lines (57 loc) · 2.03 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
#!/usr/bin/env python3
"""VMware Aria Operations for Applications 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-sdk-python',
version='2.1.0', # Please update with each pull request.
author='VMware Aria Operations for Applications Team',
url='https://github.com/wavefrontHQ/wavefront-sdk-python',
license='Apache-2.0',
description='VMware Aria Operations for Applications Python SDK',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords=[
'Aria',
'Aria Operations',
'Aria Operations for Applications',
'3D Observability',
'Distributed Tracing',
'Histograms',
'Logging',
'Metrics',
'Monitoring',
'Observability',
'Tracing',
'VMware Aria',
'VMware Aria Operations',
'VMware Aria Operations for Applications',
'Wavefront',
'Wavefront SDK'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring'
],
include_package_data=True,
packages=setuptools.find_packages(exclude=('*.tests', '*.tests.*',
'tests.*', 'tests')),
install_requires=(
'requests>=2.27',
'tdigest>=0.5.2',
'Deprecated>=1.2.10'
)
)