1*72ce6b85SPeter D  Phanfrom setuptools import setup
2*72ce6b85SPeter D  Phansetup(
3*72ce6b85SPeter D  Phan    name='ffdc',
4*72ce6b85SPeter D  Phan    version='0.1',
5*72ce6b85SPeter D  Phan    description=("A standalone script to collect logs from a given system."),
6*72ce6b85SPeter D  Phan    py_modules=['install'],
7*72ce6b85SPeter D  Phan    install_requires=[
8*72ce6b85SPeter D  Phan        'click',
9*72ce6b85SPeter D  Phan        'PyYAML',
10*72ce6b85SPeter D  Phan        'paramiko',
11*72ce6b85SPeter D  Phan    ],
12*72ce6b85SPeter D  Phan    entry_points={
13*72ce6b85SPeter D  Phan        'console_scripts': ['collectFFDC=commands.install_cmd:main']
14*72ce6b85SPeter D  Phan    }
15*72ce6b85SPeter D  Phan)
16