8ba0370776
* Add new CIG device CS6436-54P and CS5435-54P, also update code for CS6436-56P * Update port_config.ini update port config file started from "Ethernet1" * Update port_config.ini Update port config file started from "Ethernet1" * Update port_config.ini Update the index column in the port config file * Update sfputil.py Update sfputil python file as the port index changed * Update port_config.ini Update the index column in the port config file * Update sfputil.py Update sfputil python file as the port index changed
16 lines
306 B
Python
Executable File
16 lines
306 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='cs6436-54p',
|
|
version='1.0.0',
|
|
description='Module to initialize Cig CS6436-54P platforms',
|
|
|
|
packages=['cs6436-54p'],
|
|
package_dir={'cs6436-54p': 'cs6436-54p/classes'},
|
|
)
|