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:
@ -1,5 +1,8 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
|
202001XX v1.7.1
|
||||||
|
- Add yaml file parser (tested on linux and OSX)
|
||||||
|
|
||||||
20191217 v1.6.1
|
20191217 v1.6.1
|
||||||
- Add du parser (tested on linux and OSX)
|
- Add du parser (tested on linux and OSX)
|
||||||
- Add crontab parser (tested on linux and OSX)
|
- Add crontab parser (tested on linux and OSX)
|
||||||
|
@ -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.uname+ > ../docs/parsers/uname.md
|
||||||
pydocmd simple jc.parsers.uptime+ > ../docs/parsers/uptime.md
|
pydocmd simple jc.parsers.uptime+ > ../docs/parsers/uptime.md
|
||||||
pydocmd simple jc.parsers.w+ > ../docs/parsers/w.md
|
pydocmd simple jc.parsers.w+ > ../docs/parsers/w.md
|
||||||
|
pydocmd simple jc.parsers.yaml+ > ../docs/parsers/yaml.md
|
||||||
|
5
setup.py
5
setup.py
@ -5,12 +5,13 @@ with open('README.md', 'r') as f:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='jc',
|
name='jc',
|
||||||
version='1.6.1',
|
version='1.7.1',
|
||||||
author='Kelly Brazil',
|
author='Kelly Brazil',
|
||||||
author_email='kellyjonbrazil@gmail.com',
|
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>=0.0.5'
|
'ifconfig-parser>=0.0.5',
|
||||||
|
'ruamel.yaml>=0.15.0'
|
||||||
],
|
],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
Reference in New Issue
Block a user