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

setup fixes

This commit is contained in:
Kelly Brazil
2019-10-15 16:10:24 -07:00
parent 2597a18d95
commit ffb6eb754a
2 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,5 @@
__all__ = ['ifconfig',
'ls',
'netstat']
__all__ = [
'ifconfig',
'ls',
'netstat'
]

View File

@ -9,11 +9,9 @@ setuptools.setup(
author="Kelly Brazil",
description="This tool serializes the output of popular command line tools to structured JSON output.",
install_requires=[
collections,
ifconfigparser,
json
"ifconfigparser"
],
license='MIT',
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='~=3.4',