Fix bgpmon.py packaging issue for console_scripts entry point (#5436)

* Fix bgpmon.py packaging issue for console_scripts entry point

* renamed directory from bgpmon_proj to bgpmon
This commit is contained in:
gechiang 2020-09-23 09:40:49 -07:00 committed by GitHub
parent 0483255e82
commit 04c709d27f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 1 deletions

View File

View File

@ -12,7 +12,7 @@ setuptools.setup(name='sonic-bgpcfgd',
scripts=['bgpcfgd'],
entry_points={
'console_scripts': [
'bgpmon = bgpmon:main',
'bgpmon = bgpmon.bgpmon:main',
]
},
install_requires=['jinja2>=2.10', 'netaddr', 'pyyaml'],