5a89cf5733
Signed-off-by: brandon_chuang <brandon_chuang@edge-core.com>
17 lines
287 B
Python
17 lines
287 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='as5835_54t',
|
|
version='1.0',
|
|
description='Module to initialize Accton AS5835-54T platforms',
|
|
|
|
packages=['as5835_54t'],
|
|
package_dir={'as5835_54t': 'as5835-54t/classes'},
|
|
)
|
|
|