init
This commit is contained in:
commit
6fe5d14f58
4 changed files with 137 additions and 0 deletions
20
setup.py
Normal file
20
setup.py
Normal 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'
|
||||
]
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue