Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 1 | # 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 | |
| 20 | import os |
| 21 | from setuptools import setup, find_packages |
| 22 | from pip.req import parse_requirements |
| 23 | from pip.download import PipSession |
| 24 | |
| 25 | install_reqs = parse_requirements("requirements.txt", session=PipSession()) |
| 26 | reqs = [str(ir.req) for ir in install_reqs] |
| 27 | |
| 28 | setup( |
Tommy Carpenter | c3a485a | 2017-09-20 15:11:00 -0400 | [diff] [blame] | 29 | name = "onap_dcae_cbs_docker_client", |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 30 | description = "very lightweight client for a DCAE dockerized component to get it's config from the CBS", |
Tommy Carpenter | c3a485a | 2017-09-20 15:11:00 -0400 | [diff] [blame] | 31 | version = "0.0.2", |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 32 | packages=find_packages(), |
| 33 | author = "Tommy Carpenter", |
Tommy Carpenter | f3f90e0 | 2017-09-20 21:01:20 -0400 | [diff] [blame^] | 34 | author_email = "tommy@research.att.com", |
| 35 | license='Apache 2', |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 36 | keywords = "", |
| 37 | url = "", |
| 38 | install_requires=reqs |
| 39 | ) |