a582c13e98
Add new platform x86_64-ruijie_b6510-48vs8cq-r0 (Trident 3) ASIC Vendor: Broadcom Switch ASIC: Trident 3 Port Config: 48x25G+8x100G Signed-off-by: tim-rj <sonic_rd@ruijie.com.cn>
35 lines
982 B
Python
35 lines
982 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='sonic-platform',
|
|
version='1.0',
|
|
description='SONiC platform API implementation on RUIJIE B6510 Platforms',
|
|
license='Apache 2.0',
|
|
author='SONiC Team',
|
|
author_email='sonic_rd@ruijie.com.cn',
|
|
url='',
|
|
maintainer='RUIJIE B6510',
|
|
maintainer_email='',
|
|
packages=[
|
|
'sonic_platform',
|
|
'plat_hal',
|
|
'rjutil',
|
|
'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',
|
|
)
|
|
|