Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xcvrd] Remove dependence on enum; Add 'sonic-py-common' as dependencies in setup.py #106

Merged
merged 2 commits into from
Oct 28, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 18 additions & 13 deletions sonic-xcvrd/setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
from setuptools import setup

setup(
name='sonic-xcvrd',
version='1.0',
description='Transceiver monitoring daemon for SONiC',
license='Apache 2.0',
author='SONiC Team',
author_email='linuxnetdev@microsoft.com',
url='https://github.com/Azure/sonic-platform-daemons',
maintainer='Kebo Liu',
maintainer_email='kebol@mellanox.com',
scripts=[
name = 'sonic-xcvrd',
version = '1.0',
description = 'Transceiver monitoring daemon for SONiC',
license = 'Apache 2.0',
author = 'SONiC Team',
author_email = 'linuxnetdev@microsoft.com',
url = 'https://github.com/Azure/sonic-platform-daemons',
maintainer = 'Kebo Liu',
maintainer_email = 'kebol@mellanox.com',
scripts = [
'scripts/xcvrd',
],
setup_requires= [
install_requires = [
# NOTE: This package also requires swsscommon, but it is not currently installed as a wheel
'enum',
'sonic-py-common',
],
setup_requires = [
'wheel'
],
classifiers=[
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
Expand All @@ -28,5 +33,5 @@
'Programming Language :: Python :: 2.7',
'Topic :: System :: Hardware',
],
keywords='sonic SONiC TRANSCEIVER transceiver daemon XCVRD xcvrd',
keywords = 'sonic SONiC TRANSCEIVER transceiver daemon XCVRD xcvrd',
)