blob: f8c6b182856d018f58ef5938a8f4b8ad13d54ed5 [file] [log] [blame]
Peter D Phan72ce6b82021-06-03 06:18:26 -05001from setuptools import setup
2setup(
George Keishinge635ddc2022-12-08 07:38:02 -06003 name='ffdc',
4 version='0.1',
5 description=("A standalone script to collect logs from a given system."),
6 py_modules=['install'],
7 install_requires=[
8 'click',
9 'PyYAML',
10 'paramiko',
11 'redfishtool'
12 ],
Peter D Phan72ce6b82021-06-03 06:18:26 -050013 entry_points={
George Keishinge635ddc2022-12-08 07:38:02 -060014 'console_scripts': ['collectFFDC=commands.install_cmd:main']
15 }
Peter D Phan72ce6b82021-06-03 06:18:26 -050016)