blob: 6a2ef2426bbe5d647a3ca3a01efcc65d90edbd4d [file] [log] [blame]
efiacor9b532682019-11-06 11:08:54 +00001# ============LICENSE_START=======================================================
shivasubedi9aa0b662021-01-18 13:59:18 +00002# Copyright (C) 2019-2021 Nordix Foundation.
Michal Jagiello5a3f2992020-08-19 14:07:12 +00003# Copyright 2020 Deutsche Telekom. All rights reserved.
efiacor9b532682019-11-06 11:08:54 +00004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19
20from setuptools import setup, find_packages
21
22setup(
23 name="pm_subscription_handler",
efiacor062c4a72020-10-28 14:56:46 +000024 version="1.2.0",
efiacor9b532682019-11-06 11:08:54 +000025 packages=find_packages(),
26 author="lego@est.tech",
27 author_email="lego@est.tech",
28 license='Apache 2',
29 description="Service to handle PM subscriptions",
30 url="https://gerrit.onap.org/r/#/admin/projects/dcaegen2/services",
31 python_requires='>=3',
32 install_requires=[
33 "requests==2.22.0",
efiacor8b3fc622020-01-24 13:19:01 +000034 "tenacity==6.0.0",
35 "connexion==2.5.0",
36 "flask_sqlalchemy==2.4.1",
37 "Flask==1.1.1",
efiacor5ed9b7d2020-05-20 15:18:41 +010038 "swagger-ui-bundle==0.0.6",
egernugeaf93392021-03-22 10:12:59 +000039 "psycopg2-binary==2.8.6",
efiacor04643472020-06-22 18:51:43 +010040 "onap_dcae_cbs_docker_client==2.1.1",
ERIMROB27605192020-05-12 12:56:56 +010041 "onappylog==1.0.9",
shivasubedi9aa0b662021-01-18 13:59:18 +000042 "ruamel.yaml==0.16.10",
43 "jsonschema==3.2.0"]
efiacor9b532682019-11-06 11:08:54 +000044)