blob: 056a5d82f5bb5ae4359567cb763907b407a4823b [file] [log] [blame]
efiacor9b532682019-11-06 11:08:54 +00001# ============LICENSE_START=======================================================
efiacor8b3fc622020-01-24 13:19:01 +00002# Copyright (C) 2019-2020 Nordix Foundation.
efiacor9b532682019-11-06 11:08:54 +00003# ================================================================================
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
19from setuptools import setup, find_packages
20
21setup(
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",
efiacor8b3fc622020-01-24 13:19:01 +000033 "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"]
efiacor9b532682019-11-06 11:08:54 +000038)