2
0
mirror of https://opendev.org/x/pyghmi synced 2025-01-27 11:28:02 +00:00

Attempt to indicate pycrypto dependency

This commit is contained in:
Jarrod Johnson 2013-06-28 10:01:40 -04:00
parent bc19838268
commit f333dbff8b
3 changed files with 7 additions and 1 deletions

4
README Normal file
View File

@ -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.

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pycrypto>=2

View File

@ -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'],
)