117dc2b008
* This new daemon will listen to the SDK for the SDK change event, * after got a SFP change event will publish a notification via DB. modified: platform/mellanox/docker-syncd-mlnx-rpc.mk modified: platform/mellanox/docker-syncd-mlnx.mk modified: platform/mellanox/docker-syncd-mlnx/start.sh modified: platform/mellanox/docker-syncd-mlnx/supervisord.conf new file: platform/mellanox/mlnx-sfpd.mk new file: platform/mellanox/mlnx-sfpd/scripts/mlnx-sfpd new file: platform/mellanox/mlnx-sfpd/setup.py modified: platform/mellanox/rules.mk signed-off-by Liu Kebo kebol@mellanox.com
29 lines
965 B
Python
29 lines
965 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='mlnx-sfpd',
|
|
version='1.0',
|
|
description='SFP event mmonitoring daemon for SONiC on mellanox platform',
|
|
license='Apache 2.0',
|
|
author='SONiC Community',
|
|
url='https://github.com/Azure/sonic-buildimage/',
|
|
maintainer='Kebo Liu',
|
|
maintainer_email='kebol@mellanox.com',
|
|
scripts=[
|
|
'scripts/mlnx-sfpd',
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: No Input/Output (Daemon)',
|
|
'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',
|
|
'Topic :: System :: Hardware',
|
|
],
|
|
keywords='sonic SONiC SFP sfp MELLANOX mellanox daemon SFPD sfpd',
|
|
)
|