forked from wavefrontHQ/python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (28 loc) · 1.02 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
# coding: utf-8
import sys
from setuptools import setup, find_packages
NAME = "wavefront_client"
VERSION = "1.0.1"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Wavefront Public API",
author="Wavefront",
url="https://github.com/wavefrontHQ/python-client",
keywords=["Wavefront", "Wavefront Public API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
license="Apache License",
long_description="""\
The Wavefront Public APIs are published for customers to use when interacting with Wavefront servers. They can be used to automate commonly executed operations such as tagging sources automatically. Please note that you will need to supply the X-AUTH-TOKEN header with a valid token.;
"""
)