[PMSH] Bug fix for Create MG
[dcaegen2/services.git] / components / pm-subscription-handler / setup.py
1 # ============LICENSE_START=======================================================
2 #  Copyright (C) 2019-2022 Nordix Foundation.
3 #  Copyright (C) 2021 AT&T Property. All rights reserved.
4 #  Copyright 2020 Deutsche Telekom. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20
21 from setuptools import setup, find_packages
22
23 setup(
24     name="pm_subscription_handler",
25     version="2.2.2",
26     packages=find_packages(),
27     author="lego@est.tech",
28     author_email="lego@est.tech",
29     license='Apache 2',
30     description="Service to handle PM subscriptions",
31     url="https://gerrit.onap.org/r/#/admin/projects/dcaegen2/services",
32     python_requires='>=3',
33     install_requires=[
34         "requests==2.22.0",
35         "tenacity==6.0.0",
36         "connexion==2.5.0",
37         "MarkupSafe==2.0.1",
38         "flask_sqlalchemy==2.4.1",
39         "Flask==1.1.4",
40         "tornado==6.1",
41         "swagger-ui-bundle==0.0.6",
42         "psycopg2-binary==2.8.6",
43         "onap_dcae_cbs_docker_client==2.2.1",
44         "onappylog==1.0.9",
45         "ruamel.yaml==0.16.10",
46         "jsonschema==3.2.0",
47         "pyyaml==5.4.1"]
48 )