blob: b4fdf0e954279f9afc3c4b8e86c96ce39dd7f0b6 [file] [log] [blame]
Tommy Carpenter81b9ed72017-08-23 11:21:44 -04001# ================================================================================
Tommy Carpentere8e4e382018-02-19 20:46:13 -05002# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
Tommy Carpenter81b9ed72017-08-23 11:21:44 -04003# ================================================================================
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# ============LICENSE_END=========================================================
16#
17# ECOMP is a trademark and service mark of AT&T Intellectual Property.
18
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040019from setuptools import setup, find_packages
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040020
21setup(
Tommy Carpenter426fd9d2018-03-12 11:29:33 -040022 name="onap_dcae_cbs_docker_client",
23 description="very lightweight client for a DCAE dockerized component to get it's config from the CBS",
24 version="1.0.2",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040025 packages=find_packages(),
Tommy Carpenter426fd9d2018-03-12 11:29:33 -040026 author="Tommy Carpenter",
27 author_email="tommy@research.att.com",
Tommy Carpenterf3f90e02017-09-20 21:01:20 -040028 license='Apache 2',
Tommy Carpenter426fd9d2018-03-12 11:29:33 -040029 keywords="",
30 url="",
31 install_requires=[
32 "requests>= 2.0.0, < 3.0.0"
Tommy Carpentere8e4e382018-02-19 20:46:13 -050033 ]
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040034)