8eab0e02df
* [202012][platform/barefoot] (#8543) Why I did it Pcied running by python 2. How I did it dropped python2 support and add python3 support for pcied in file docker-pmon.supervisord.conf.j2 How to verify it docker exec pmon supervisorctl status * [Netberg][nba715] Initial support for Netberg Aurora 715 switch Signed-off-by: Andrew Sapronov <andrew.sapronov@gmail.com> Co-authored-by: Kostiantyn Yarovyi <kostiantynx.yarovyi@intel.com>
31 lines
828 B
Python
Executable File
31 lines
828 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
# import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='sonic_platform',
|
|
version='1.0',
|
|
description='Netberg Aurora 715 sonic platform API',
|
|
|
|
packages=['sonic_platform'],
|
|
package_dir={'sonic_platform': 'aurora-715/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 :: 2.7',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Topic :: Utilities',
|
|
],
|
|
)
|