Skip to content

Commit

Permalink
Not4Review
Browse files Browse the repository at this point in the history
  • Loading branch information
FengPan-Frank committed Nov 26, 2024
1 parent f8a78c1 commit a97af95
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 33 deletions.
3 changes: 1 addition & 2 deletions rules/docker-bmp.mk
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ $(DOCKER_BMP)_PATH = $(DOCKERS_PATH)/$(DOCKER_BMP_STEM)
$(DOCKER_BMP)_DEPENDS += $(LIBSWSSCOMMON) \
$(SONIC_BMPD)

$(DOCKER_BMP)_INSTALL_PYTHON_WHEELS = $(SONIC_BMPCFGD) \
$(SONIC_UTILITIES_PY3)
$(DOCKER_BMP)_PYTHON_WHEELS = $(SONIC_BMPCFGD)
$(DOCKER_BMP)_INSTALL_DEBS = $(LIBSWSSCOMMON) \
$(SONIC_BMPD) \
$(PYTHON3_SWSSCOMMON) \
Expand Down
39 changes: 8 additions & 31 deletions src/sonic-bmpcfgd/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from __future__ import print_function
import sys
from setuptools import setup
import pkg_resources
from packaging import version
import setuptools

setup(

dependencies = [
'sonic_py_common',
]

setuptools.setup(
name = 'sonic-bmpcfgd-services',
version = '1.0',
description = 'Python services which run in the bmp container',
Expand All @@ -14,9 +15,7 @@
url = 'https://github.com/Azure/sonic-buildimage',
maintainer = 'Feng Pan',
maintainer_email = 'fenpan@microsoft.com',
scripts = [
'scripts/bmpcfgd'
],
packages = setuptools.find_packages(),
install_requires = [
'jinja2>=2.10',
'netaddr==0.8.0',
Expand All @@ -39,26 +38,4 @@
'sonic-py-common',
'pytest-cov'
],
extras_require = {
"testing": [
'parameterized',
'pytest',
'pyfakefs',
'sonic-py-common'
]
},
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'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 :: System',
],
keywords = 'SONiC bmp config daemon',
test_suite = 'setup.get_test_suite'
)

0 comments on commit a97af95

Please sign in to comment.