-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #360 from DataDog/yann/changelog027
0.27.0 changelog
- Loading branch information
Showing
2 changed files
with
26 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,46 +4,31 @@ | |
|
||
def get_readme_md_contents(): | ||
"""read the contents of your README file""" | ||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
long_description = f.read() | ||
return long_description | ||
|
||
|
||
install_reqs = [ | ||
"decorator>=3.3.2", | ||
"requests>=2.6.0", | ||
] | ||
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.26.0", | ||
version="0.27.0", | ||
install_requires=install_reqs, | ||
tests_require=["nose", "mock"], | ||
packages=[ | ||
'datadog', | ||
'datadog.api', | ||
'datadog.dogstatsd', | ||
'datadog.threadstats', | ||
'datadog.util', | ||
'datadog.dogshell' | ||
], | ||
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', | ||
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', | ||
], | ||
}, | ||
entry_points={"console_scripts": ["dog = datadog.dogshell:main", "dogwrap = datadog.dogshell.wrap:main"]}, | ||
test_suite="tests", | ||
classifiers=[ | ||
"License :: OSI Approved :: BSD License", | ||
|
@@ -54,5 +39,5 @@ def get_readme_md_contents(): | |
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
] | ||
], | ||
) |