1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

packaging fixes

This commit is contained in:
Kelly Brazil
2019-10-16 17:15:43 -07:00
parent 7234afe568
commit 46ad1269cb
2 changed files with 4 additions and 3 deletions

View File

@ -6,9 +6,9 @@ Main input module
import sys import sys
import json import json
from parsers import ifconfig from jc.parsers import ifconfig
from parsers import ls from jc.parsers import ls
from parsers import netstat from jc.parsers import netstat
def main(): def main():
pretty = False pretty = False

View File

@ -7,6 +7,7 @@ setuptools.setup(
name='jc', name='jc',
version='0.1.1', version='0.1.1',
author='Kelly Brazil', author='Kelly Brazil',
author_email='kellyjonbrazil@gmail.com',
description='This tool serializes the output of popular command line tools to structured JSON output.', description='This tool serializes the output of popular command line tools to structured JSON output.',
install_requires=[ install_requires=[
'ifconfig-parser' 'ifconfig-parser'