diff --git a/jc/parsers/__init__.py b/jc/parsers/__init__.py index 628d1c12..781c34ec 100644 --- a/jc/parsers/__init__.py +++ b/jc/parsers/__init__.py @@ -1,3 +1,5 @@ -__all__ = ['ifconfig', - 'ls', - 'netstat'] \ No newline at end of file +__all__ = [ + 'ifconfig', + 'ls', + 'netstat' +] \ No newline at end of file diff --git a/setup.py b/setup.py index aae5809c..38e687bd 100755 --- a/setup.py +++ b/setup.py @@ -9,11 +9,9 @@ setuptools.setup( author="Kelly Brazil", description="This tool serializes the output of popular command line tools to structured JSON output.", install_requires=[ - collections, - ifconfigparser, - json + "ifconfigparser" ], - license='MIT', + license="MIT", long_description=long_description, long_description_content_type="text/markdown", python_requires='~=3.4',