efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
efiacor | 8b3fc62 | 2020-01-24 13:19:01 +0000 | [diff] [blame] | 2 | # Copyright (C) 2019-2020 Nordix Foundation. |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 3 | # ================================================================================ |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # SPDX-License-Identifier: Apache-2.0 |
| 17 | # ============LICENSE_END========================================================= |
| 18 | |
| 19 | from setuptools import setup, find_packages |
| 20 | |
| 21 | setup( |
| 22 | name="pm_subscription_handler", |
| 23 | version="1.0.0", |
| 24 | packages=find_packages(), |
| 25 | author="lego@est.tech", |
| 26 | author_email="lego@est.tech", |
| 27 | license='Apache 2', |
| 28 | description="Service to handle PM subscriptions", |
| 29 | url="https://gerrit.onap.org/r/#/admin/projects/dcaegen2/services", |
| 30 | python_requires='>=3', |
| 31 | install_requires=[ |
| 32 | "requests==2.22.0", |
efiacor | 8b3fc62 | 2020-01-24 13:19:01 +0000 | [diff] [blame] | 33 | "tenacity==6.0.0", |
| 34 | "connexion==2.5.0", |
| 35 | "flask_sqlalchemy==2.4.1", |
| 36 | "Flask==1.1.1", |
| 37 | "psycopg2-binary==2.8.4"] |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 38 | ) |