From f333dbff8b8dc649c5aad9cd941eedd33ca63d54 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 28 Jun 2013 10:01:40 -0400 Subject: [PATCH] Attempt to indicate pycrypto dependency --- README | 4 ++++ requirements.txt | 1 + setup.py | 3 ++- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 README create mode 100644 requirements.txt diff --git a/README b/README new file mode 100644 index 00000000..43df43c2 --- /dev/null +++ b/README @@ -0,0 +1,4 @@ +This is a pure python implementation of IPMI protocol. + +ipmictl.py is a sample application to roughly show the most simple approach to +invoking the library. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..61266808 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pycrypto>=2 diff --git a/setup.py b/setup.py index 33f33b93..4dca00c8 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,11 @@ from distutils.core import setup setup(name='python-ipmi', - version='0.1', + version='0.1.8', description='Python IPMI implementation', author='Jarrod Johnson', author_email='jbjohnso@us.ibm.com', url='http://xcat.sf.net/', + requires=['pycrypto'], packages=['ipmi'], )