forked from brennv/pysos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 833 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import sys
from distutils.core import setup
setup(
name='pysos',
version='2.0.2',
description='Parse a sosreport for specific information',
long_description=('Pysos is a tool to parse through a sosreport and'
'report back desired information in a structured'
' and human-readable fashion in order to make '
'troubleshooting easier and faster.'),
author='Jake Hunsaker',
author_email='[email protected]',
maintainer='Jake Hunsaker',
maintainer_email='[email protected]',
license='GPL',
url='https://github.com/TurboTurtle/pysos',
packages=['pysosutils', 'pysosutils/plugins', 'pysosutils/utilities',
'pysosutils/sostests'
],
scripts=['pysos'],
)