93778b296e
Add the required code and Dockerfile to build a Debian based container image of notificationservice-base to support v1 API backwards compatibility. The notificationservice-base-v1 code added here is being ported forward from stx.6.0. This code existed as-is in StarlingX prior to the work done to implement the ORAN Notification API. It is being returned in order to support user's needs for backwards compatbility. Subsequent work will done to update the helm charts, allowing notificationservice-base-v1-api and notificationservice-base-v2-api (ORAN Notification) to be deployed in parallel. Test plan: PASS: Build container image PASS: Manually deploy image and test with v1 client Story: 2010538 Task: 47175 Change-Id: I2f672fe1b226cb60b62bd5fe7f8abbedc7b0c4cc
29 lines
599 B
Python
29 lines
599 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (c) 2021-2023 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
try:
|
|
from setuptools import setup, find_packages
|
|
except ImportError:
|
|
from ez_setup import use_setuptools
|
|
use_setuptools()
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='ptptrackingfunction',
|
|
version='0.1',
|
|
description='',
|
|
author='',
|
|
author_email='',
|
|
install_requires=[
|
|
"",
|
|
],
|
|
test_suite='ptptrackingfunction',
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
packages=find_packages(exclude=['ez_setup'])
|
|
)
|