From 46ad1269cb58dc6f064d17eb0b04da62d8fd5fce Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 16 Oct 2019 17:15:43 -0700 Subject: [PATCH] packaging fixes --- jc/jc.py | 6 +++--- setup.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jc/jc.py b/jc/jc.py index 88b33ed2..07742a6f 100755 --- a/jc/jc.py +++ b/jc/jc.py @@ -6,9 +6,9 @@ Main input module import sys import json -from parsers import ifconfig -from parsers import ls -from parsers import netstat +from jc.parsers import ifconfig +from jc.parsers import ls +from jc.parsers import netstat def main(): pretty = False diff --git a/setup.py b/setup.py index ca440047..2d3b7c72 100755 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ setuptools.setup( name='jc', version='0.1.1', author='Kelly Brazil', + author_email='kellyjonbrazil@gmail.com', description='This tool serializes the output of popular command line tools to structured JSON output.', install_requires=[ 'ifconfig-parser'