blob: fcefa9136edc0783bdb31eba03062eb9d168c8c6 [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
19import os
20from setuptools import setup, find_packages
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040021
22setup(
Tommy Carpenterc3a485a2017-09-20 15:11:00 -040023 name = "onap_dcae_cbs_docker_client",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040024 description = "very lightweight client for a DCAE dockerized component to get it's config from the CBS",
Tommy Carpentere8e4e382018-02-19 20:46:13 -050025 version = "0.0.5",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040026 packages=find_packages(),
27 author = "Tommy Carpenter",
Tommy Carpenterf3f90e02017-09-20 21:01:20 -040028 author_email = "tommy@research.att.com",
29 license='Apache 2',
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040030 keywords = "",
31 url = "",
Tommy Carpentere8e4e382018-02-19 20:46:13 -050032 install_requires = [
33 "requests"
34 ]
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040035)