From 3b7d79c5fc9d79cd42e506321d1e8d3c230c13f3 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 7 Feb 2019 14:27:35 -0500 Subject: [PATCH] Directly reference packages in pbr-free setup Without pbr, the list has to be manually curated. There is a setuptools directive that will work and is used by pbr, but for now use the output with some modules trimmed. Change-Id: I772b7bef263639167b3b5c54bc7812e1e8acbaf6 --- setup.py.tmpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py.tmpl b/setup.py.tmpl index 742c1201..9b4cb0a1 100644 --- a/setup.py.tmpl +++ b/setup.py.tmpl @@ -23,5 +23,7 @@ setuptools.setup( description='Python General Hardware Management Initiative (IPMI, redfish, etc)', 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'], license='Apache License, Version 2.0')