mirror of
https://opendev.org/x/pyghmi
synced 2025-01-15 04:07:48 +00:00
13 lines
290 B
Python
13 lines
290 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='python-ipmi',
|
||
|
version='0.1',
|
||
|
description='Python IPMI implementation',
|
||
|
author='Jarrod Johnson',
|
||
|
author_email='jbjohnso@us.ibm.com',
|
||
|
url='http://xcat.sf.net/',
|
||
|
packages=['ipmi'],
|
||
|
)
|