-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 * Apply suggestions from code review Co-Authored-By: ofek <[email protected]>
- Loading branch information
Showing
8 changed files
with
39 additions
and
75 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,6 +1,3 @@ | ||
from .ceph import Ceph | ||
|
||
__all__ = [ | ||
'__version__', | ||
'Ceph' | ||
] | ||
__all__ = ['__version__', 'Ceph'] |
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# Always prefer setuptools over distutils | ||
from setuptools import setup | ||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
|
||
# Always prefer setuptools over distutils | ||
from setuptools import setup | ||
|
||
HERE = path.abspath(path.dirname(__file__)) | ||
|
||
# Get version info | ||
|
@@ -31,17 +32,13 @@ def get_requirements(fpath): | |
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
keywords='datadog agent ceph check', | ||
|
||
# The project's main homepage. | ||
url='https://github.com/DataDog/integrations-core', | ||
|
||
# Author details | ||
author='Datadog', | ||
author_email='[email protected]', | ||
|
||
# License | ||
license='BSD', | ||
|
||
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|
@@ -52,14 +49,10 @@ def get_requirements(fpath): | |
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
], | ||
|
||
# The package we're going to ship | ||
packages=['datadog_checks.ceph'], | ||
|
||
# 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
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