Attempt to indicate pycrypto dependency
This commit is contained in:
parent
bc19838268
commit
f333dbff8b
4
README
Normal file
4
README
Normal 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
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
pycrypto>=2
|
3
setup.py
3
setup.py
@ -3,10 +3,11 @@
|
|||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='python-ipmi',
|
setup(name='python-ipmi',
|
||||||
version='0.1',
|
version='0.1.8',
|
||||||
description='Python IPMI implementation',
|
description='Python IPMI implementation',
|
||||||
author='Jarrod Johnson',
|
author='Jarrod Johnson',
|
||||||
author_email='jbjohnso@us.ibm.com',
|
author_email='jbjohnso@us.ibm.com',
|
||||||
url='http://xcat.sf.net/',
|
url='http://xcat.sf.net/',
|
||||||
|
requires=['pycrypto'],
|
||||||
packages=['ipmi'],
|
packages=['ipmi'],
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user