forked from DataDog/datadogpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.41 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
from setuptools import setup
import sys
install_reqs = [
"decorator>=3.3.2",
"requests>=2.6.0",
]
if sys.version_info[0] == 2:
install_reqs.append("simplejson>=2.0.9")
else:
install_reqs.append("simplejson>=3.0.0")
if [sys.version_info[0], sys.version_info[1]] < [2, 7]:
install_reqs.append("argparse>=1.2")
setup(
name="datadog",
version="0.17.0",
install_requires=install_reqs,
tests_require=["nose", "mock"],
packages=[
'datadog',
'datadog.api',
'datadog.dogstatsd',
'datadog.threadstats',
'datadog.util',
'datadog.dogshell'
],
author="Datadog, Inc.",
author_email="[email protected]",
description="The Datadog Python library",
license="BSD",
keywords="datadog",
url="https://www.datadoghq.com",
entry_points={
'console_scripts': [
'dog = datadog.dogshell:main',
'dogwrap = datadog.dogshell.wrap:main',
],
},
test_suite="tests",
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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",
]
)