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

setup for 1.7.1

This commit is contained in:
Kelly Brazil
2020-02-03 16:12:45 -08:00
parent db157b8ca7
commit d04ad45331
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
jc changelog
202001XX v1.7.1
- Add yaml file parser (tested on linux and OSX)
20191217 v1.6.1
- Add du parser (tested on linux and OSX)
- Add crontab parser (tested on linux and OSX)

View File

@ -36,3 +36,4 @@ pydocmd simple jc.parsers.systemctl_luf+ > ../docs/parsers/systemctl_luf.md
pydocmd simple jc.parsers.uname+ > ../docs/parsers/uname.md
pydocmd simple jc.parsers.uptime+ > ../docs/parsers/uptime.md
pydocmd simple jc.parsers.w+ > ../docs/parsers/w.md
pydocmd simple jc.parsers.yaml+ > ../docs/parsers/yaml.md

View File

@ -5,12 +5,13 @@ with open('README.md', 'r') as f:
setuptools.setup(
name='jc',
version='1.6.1',
version='1.7.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>=0.0.5'
'ifconfig-parser>=0.0.5',
'ruamel.yaml>=0.15.0'
],
license='MIT',
long_description=long_description,