a070f1a239
Add support for Accton as9726-32d platform This pull request is based on as9716-32d, so I reference as9716-32d to create new model: as9726-32d. This module do not need led driver to control led, FPGA can handle it. I also implement API2.0(sonic_platform) for this model, CPLD driver, PSU driver, Fan driver to control these HW behavior.
15 lines
277 B
Python
Executable File
15 lines
277 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='as9726_32d',
|
|
version='1.0',
|
|
description='Module to initialize Accton AS9726_32D platforms',
|
|
|
|
packages=['as9726_32d'],
|
|
package_dir={'as9726_32d': 'as9726-32d/classes'},
|
|
)
|