13 lines
217 B
Python
13 lines
217 B
Python
|
import os
|
||
|
from setuptools import setup
|
||
|
os.listdir
|
||
|
|
||
|
setup(
|
||
|
name='sonic-platform',
|
||
|
version='1.0',
|
||
|
description='Module to initialize Alphanetworks SNJ60D0-320F platforms',
|
||
|
|
||
|
packages=['sonic_platform'],
|
||
|
)
|
||
|
|