This commit is contained in:
nyanloutre 2021-11-03 20:05:41 +01:00
commit 6fe5d14f58
4 changed files with 137 additions and 0 deletions

20
setup.py Normal file
View file

@ -0,0 +1,20 @@
from setuptools import setup
setup(
name='ipmihddtemp',
py_modules=['ipmihddtemp'],
version='1.0',
description='IPMI HDD temp fan control',
author='Paul TREHIOU',
author_email='paul@nyanlout.re',
url='https://gitea.nyanlout.re/nyanloutre/ipmihddtemp',
license='MIT',
entry_points={
'console_scripts': [
'ipmihddtemp=ipmihddtemp:main'
]
},
install_requires=[
'pysmart'
]
)