blob: 2f6a76a62b0db4049ac92189589af1a73bb00c6b [file] [log] [blame]
Tommy Carpenter81b9ed72017-08-23 11:21:44 -04001# org.onap.dcae
2# ================================================================================
3# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
4# ================================================================================
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=========================================================
17#
18# ECOMP is a trademark and service mark of AT&T Intellectual Property.
19
20import os
21from setuptools import setup, find_packages
22from pip.req import parse_requirements
23from pip.download import PipSession
24
25install_reqs = parse_requirements("requirements.txt", session=PipSession())
26reqs = [str(ir.req) for ir in install_reqs]
27
28setup(
Tommy Carpenterc3a485a2017-09-20 15:11:00 -040029 name = "onap_dcae_cbs_docker_client",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040030 description = "very lightweight client for a DCAE dockerized component to get it's config from the CBS",
Tommy Carpenterc3a485a2017-09-20 15:11:00 -040031 version = "0.0.2",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040032 packages=find_packages(),
33 author = "Tommy Carpenter",
Tommy Carpenterf3f90e02017-09-20 21:01:20 -040034 author_email = "tommy@research.att.com",
35 license='Apache 2',
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040036 keywords = "",
37 url = "",
38 install_requires=reqs
39)