2bb58044c0
* [Quanta] Add a new supported device and platform, IX8C-56X Switch Vendor: Quanta Switch SKU: IX8C-56X ASIC Vendor: Broadcom Switch ASIC: Trident3 Port Configuration: 48x25G + 8x100G Signed-off-by: Jonathan Tsai <jonathan.tsai@quantatw.com>
17 lines
277 B
Python
17 lines
277 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='ix8c_56x',
|
|
version='1.0',
|
|
description='Module to initialize Quanta IX8C-56X platforms',
|
|
|
|
packages=['ix8c_56x'],
|
|
package_dir={'ix8c_56x': 'ix8c-56x/classes'},
|
|
)
|
|
|