forked from DataDog/integrations-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adhere to code style * fix * better * .
- Loading branch information
Showing
6 changed files
with
25 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
from .__about__ import __version__ | ||
from .riak_repl import RiakReplCheck | ||
|
||
__all__ = [ | ||
'__version__', | ||
'RiakReplCheck' | ||
] | ||
__all__ = ['__version__', 'RiakReplCheck'] |
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 |
---|---|---|
|
@@ -25,17 +25,13 @@ | |
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
keywords='datadog agent riak_repl check', | ||
|
||
# The project's main homepage. | ||
url='https://github.com/DataDog/integrations-extras', | ||
|
||
# Author details | ||
author='Britt Treece', | ||
author_email='[email protected]', | ||
|
||
# License | ||
license='BSD-3-Clause', | ||
|
||
# See https://pypi.org/classifiers | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|
@@ -47,13 +43,10 @@ | |
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
|
||
# The package we're going to ship | ||
packages=['datadog_checks', 'datadog_checks.riak_repl'], | ||
|
||
# Run-time dependencies | ||
install_requires=[CHECKS_BASE_REQ], | ||
|
||
# Extra files to ship with the wheel package | ||
include_package_data=True, | ||
) |
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
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