df28eceb35
Why I did it Add 6512-32r support for Wistron platform Update sw-to3200k for newer branch How I did it Add code in device and platform folder for 6512-32r Update sw-to3200k code both in device and platform folder How to verify it Install on Wistron device and run command to verify Signed-off-by: RogerChang Roger_Chang@wistron.com
33 lines
949 B
Python
33 lines
949 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='sonic-platform',
|
|
version='1.0',
|
|
description='SONiC platform API implementation on Wistron SW-TO3200K Platforms',
|
|
license='Apache 2.0',
|
|
author='SONiC Team',
|
|
author_email='sonic_rd@wistron.com',
|
|
url='',
|
|
maintainer='Wistron SW-TO3200K',
|
|
maintainer_email='',
|
|
packages=[
|
|
'sonic_platform'
|
|
],
|
|
package_dir={'sonic_platform': 'sonic_platform'},
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Plugins',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Information Technology',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Natural Language :: English',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Topic :: Utilities',
|
|
],
|
|
keywords='sonic SONiC platform PLATFORM',
|
|
)
|
|
|