blob: 585d6281e82137c96b59619d1f14b1fb31db61d3 [file] [log] [blame]
Tommy Carpenter81b9ed72017-08-23 11:21:44 -04001# ================================================================================
Hansen, Tony (th1395)876d17b2021-06-22 21:12:32 +00002# Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved.
Edyta Krukowska1002e422021-05-12 12:00:07 +02003# Copyright (C) 2021 Nokia. All rights reserved.
Tommy Carpenter81b9ed72017-08-23 11:21:44 -04004# ================================================================================
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# ============LICENSE_END=========================================================
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040017
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040018from setuptools import setup, find_packages
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040019
20setup(
Tommy Carpenter426fd9d2018-03-12 11:29:33 -040021 name="onap_dcae_cbs_docker_client",
22 description="very lightweight client for a DCAE dockerized component to get it's config from the CBS",
Hansen, Tony (th1395)876d17b2021-06-22 21:12:32 +000023 version="2.2.0",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040024 packages=find_packages(),
Tommy Carpenter426fd9d2018-03-12 11:29:33 -040025 author="Tommy Carpenter",
26 author_email="tommy@research.att.com",
Tommy Carpenter6778c622019-06-19 14:54:53 +000027 license="Apache 2",
Tommy Carpenter1474cbb2019-06-24 15:52:59 +000028 url="https://gerrit.onap.org/r/#/admin/projects/dcaegen2/utils",
Tommy Carpenter6778c622019-06-19 14:54:53 +000029 install_requires=["requests>= 2.0.0, < 3.0.0"],
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040030)