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'