bce4aa1412
Why I did it Ragile adapter ra-b6510-32c ra-b6510-48v8c ra-b6910-64c ra-b6920-4s to kernel 5.x Signed-off-by: “pettershao” pettershao@ragilenetworks.com
34 lines
959 B
Python
34 lines
959 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',
|
|
)
|
|
|