0e0772596e
Signed-off-by: pettershao-ragilenetworks pettershao@ragilenetworks.com What I did it Add new platform x86_64-ragile_ra-b6510-32c-r0 (Trident 3) ASIC Vendor: Broadcom Switch ASIC: Trident 3 Port Config: 32x100G Add new platform x86_64-ragile_ra-b6920-4s-r0 (Tomahawk 3) ASIC Vendor: Broadcom Switch ASIC: Tomahawk 3 Port Config: 128x100G -How I did it Provide device and platform related files. -How to verify it show platform fan show platform ssdhealth show platform psustatus show platform summary show platform syseeprom show platform temperature show interface status
34 lines
960 B
Python
34 lines
960 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='sonic-platform',
|
|
version='1.0',
|
|
description='SONiC platform API implementation on RAGILE Platforms',
|
|
license='Apache 2.0',
|
|
author='SONiC Team',
|
|
author_email='support@ragile.com',
|
|
url='',
|
|
maintainer='RAGILE SUPPORT TEAM',
|
|
maintainer_email='',
|
|
packages=[
|
|
'sonic_platform',
|
|
'rgutil',
|
|
'eepromutil',
|
|
'sonic_pcie',
|
|
],
|
|
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 :: 3.7',
|
|
'Topic :: Utilities',
|
|
],
|
|
keywords='sonic SONiC platform PLATFORM',
|
|
)
|
|
|