584ed989c8
* catch signal SIGINT and SIGTERM to set all fans full-speed before end fan monitor. Signed-off-by: roy_lee <roy_lee@accton.com> * Add fan_control monitor for as7816-64x. Signed-off-by: roy_lee <roy_lee@accton.com> * Fix typo. Signed-off-by: roy_lee <roy_lee@accton.com> * Correct typo and duty setting after verified. Signed-off-by: roy_lee <roy_lee@accton.com>
17 lines
287 B
Python
Executable File
17 lines
287 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='as7312_54x',
|
|
version='1.0',
|
|
description='Module to initialize Accton AS7312-54X platforms',
|
|
|
|
packages=['as7312_54x'],
|
|
package_dir={'as7312_54x': 'as7312-54x/classes'},
|
|
)
|
|
|