2
0
mirror of https://opendev.org/x/pyghmi synced 2025-01-14 19:57:47 +00:00
pyghmi/setup.py

14 lines
341 B
Python
Raw Normal View History

#!/usr/bin/env python
2013-06-28 10:12:57 -04:00
from setuptools import setup
setup(name='python-ipmi',
version='0.1.11',
description='Python IPMI implementation',
author='Jarrod Johnson',
author_email='jbjohnso@us.ibm.com',
url='http://xcat.sf.net/',
2013-06-28 10:10:28 -04:00
install_requires=['pycrypto'],
packages=['ipmi','ipmi.private'],
)