efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
shivasubedi | 9aa0b66 | 2021-01-18 13:59:18 +0000 | [diff] [blame] | 2 | # Copyright (C) 2019-2021 Nordix Foundation. |
Michal Jagiello | 5a3f299 | 2020-08-19 14:07:12 +0000 | [diff] [blame] | 3 | # Copyright 2020 Deutsche Telekom. All rights reserved. |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 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", |
efiacor | 062c4a7 | 2020-10-28 14:56:46 +0000 | [diff] [blame] | 24 | version="1.2.0", |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 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", |
efiacor | 8b3fc62 | 2020-01-24 13:19:01 +0000 | [diff] [blame] | 34 | "tenacity==6.0.0", |
| 35 | "connexion==2.5.0", |
| 36 | "flask_sqlalchemy==2.4.1", |
| 37 | "Flask==1.1.1", |
efiacor | 5ed9b7d | 2020-05-20 15:18:41 +0100 | [diff] [blame] | 38 | "swagger-ui-bundle==0.0.6", |
egernug | eaf9339 | 2021-03-22 10:12:59 +0000 | [diff] [blame] | 39 | "psycopg2-binary==2.8.6", |
efiacor | 0464347 | 2020-06-22 18:51:43 +0100 | [diff] [blame] | 40 | "onap_dcae_cbs_docker_client==2.1.1", |
ERIMROB | 2760519 | 2020-05-12 12:56:56 +0100 | [diff] [blame] | 41 | "onappylog==1.0.9", |
shivasubedi | 9aa0b66 | 2021-01-18 13:59:18 +0000 | [diff] [blame] | 42 | "ruamel.yaml==0.16.10", |
| 43 | "jsonschema==3.2.0"] |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 44 | ) |