Replace setup.py with requirements.txt text
Changes:
- Remove setup.py file which is outdated
- Add requirements.txt file since FFDC is
designed to run as stand-alone and not
tightly integrated with the framework.
Tested: - NA
Change-Id: I2b10506cc9a9aa00db70da779b6067e9d8a8cb26
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/ffdc/requirements.txt b/ffdc/requirements.txt
new file mode 100644
index 0000000..2528c18
--- /dev/null
+++ b/ffdc/requirements.txt
@@ -0,0 +1,5 @@
+click
+logger
+PyYAML
+paramiko
+
diff --git a/ffdc/setup.py b/ffdc/setup.py
deleted file mode 100644
index ef360af..0000000
--- a/ffdc/setup.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from setuptools import setup
-
-setup(
- name="ffdc",
- version="0.1",
- description="A standalone script to collect logs from a given system.",
- py_modules=["install"],
- install_requires=["click", "PyYAML", "paramiko", "redfishtool"],
- entry_points={
- "console_scripts": ["collectFFDC=commands.install_cmd:main"]
- },
-)