[PMSH] Validate schema of PMSH monitoring policy
[dcaegen2/services.git] / components / pm-subscription-handler / setup.py
1 # ============LICENSE_START=======================================================
2 #  Copyright (C) 2019-2021 Nordix Foundation.
3 #  Copyright 2020 Deutsche Telekom. All rights reserved.
4 # ================================================================================
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
20 from setuptools import setup, find_packages
21
22 setup(
23     name="pm_subscription_handler",
24     version="1.2.0",
25     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",
34         "tenacity==6.0.0",
35         "connexion==2.5.0",
36         "flask_sqlalchemy==2.4.1",
37         "Flask==1.1.1",
38         "swagger-ui-bundle==0.0.6",
39         "psycopg2-binary==2.8.4",
40         "onap_dcae_cbs_docker_client==2.1.1",
41         "onappylog==1.0.9",
42         "ruamel.yaml==0.16.10",
43         "jsonschema==3.2.0"]
44 )