forked from DataDog/datadogpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.44 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
from setuptools import setup
import sys
def get_readme_md_contents():
"""read the contents of your README file"""
with open("README.md") as f:
long_description = f.read()
return long_description
install_reqs = ["decorator>=3.3.2", "requests>=2.6.0"]
if [sys.version_info[0], sys.version_info[1]] < [2, 7]:
install_reqs.append("argparse>=1.2")
setup(
name="datadog",
version="0.28.0",
install_requires=install_reqs,
tests_require=["nose", "mock"],
packages=["datadog", "datadog.api", "datadog.dogstatsd", "datadog.threadstats", "datadog.util", "datadog.dogshell"],
author="Datadog, Inc.",
long_description=get_readme_md_contents(),
long_description_content_type="text/markdown",
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
],
)