From ffb6eb754a87baad5fb0558e30a5bca1a9b9e0a8 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 15 Oct 2019 16:10:24 -0700 Subject: [PATCH] setup fixes --- jc/parsers/__init__.py | 8 +++++--- setup.py | 6 ++---- 2 files changed, 7 insertions(+), 7 deletions(-) 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',