0405b369af
Why I did it Support Intel Tofino based platforms Netberg Aurora 750 ASIC: Intel Tofino BFN-T10-064Q Pors: 64x 100G How I did it Added specification to device/netberg directory Added platform/barefoot/sonic-platform-modules-netberg contains kernel modules, scripts and sonic_platform packages. Modified the platform/barefoot/platform-modules-netberg.mk to include Aurora 750 related ID. Signed-off-by: Andrew Sapronov <andrew.sapronov@gmail.com>
28 lines
754 B
Python
28 lines
754 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='sonic_platform',
|
|
version='1.0',
|
|
description='Netberg Aurora 750 sonic platform API',
|
|
|
|
packages=['sonic_platform'],
|
|
package_dir={'sonic_platform': 'sonic_platform'},
|
|
|
|
classifiers=[
|
|
'Development Status :: 3 - Beta',
|
|
'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',
|
|
],
|
|
)
|