From 19ebb593b73d652d305d2a144f6618e1816952b4 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 18 Mar 2019 10:40:18 -0400 Subject: [PATCH] Add missing init to redfish Redfish needs to be a proper python module. Change-Id: Id7e51f8cbcb42b4a0c61ebfd200f4c3e38f00203 --- pyghmi/redfish/__init__.py | 0 setup.py.tmpl | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 pyghmi/redfish/__init__.py diff --git a/pyghmi/redfish/__init__.py b/pyghmi/redfish/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/setup.py.tmpl b/setup.py.tmpl index 9b4cb0a1..48626467 100644 --- a/setup.py.tmpl +++ b/setup.py.tmpl @@ -24,6 +24,7 @@ setuptools.setup( author='Jarrod Johnson', author_email='jjohnson2@lenovo.com', packages=['pyghmi', 'pyghmi.util', 'pyghmi.ipmi', 'pyghmi.cmd', - 'pyghmi.ipmi.private', 'pyghmi.ipmi.oem', 'pyghmi.ipmi.oem.lenovo'], + 'pyghmi.redfish', 'pyghmi.ipmi.private', 'pyghmi.ipmi.oem', + 'pyghmi.ipmi.oem.lenovo'], license='Apache License, Version 2.0')