From 7eec73261d0e61214d6437afb32010592ee060bc Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 28 Jun 2013 10:35:41 -0400 Subject: [PATCH] fix setup to include the private parts of the project --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9d7855d2..e19e677a 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,11 @@ from setuptools import setup setup(name='python-ipmi', - version='0.1.10', + version='0.1.11', description='Python IPMI implementation', author='Jarrod Johnson', author_email='jbjohnso@us.ibm.com', url='http://xcat.sf.net/', install_requires=['pycrypto'], - packages=['ipmi'], + packages=['ipmi','ipmi.private'], )