Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 1 | # ================================================================================ |
Tommy Carpenter | e8e4e38 | 2018-02-19 20:46:13 -0500 | [diff] [blame^] | 2 | # Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 3 | # ================================================================================ |
| 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 | |
| 19 | import os |
| 20 | from setuptools import setup, find_packages |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 21 | |
| 22 | setup( |
Tommy Carpenter | c3a485a | 2017-09-20 15:11:00 -0400 | [diff] [blame] | 23 | name = "onap_dcae_cbs_docker_client", |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 24 | description = "very lightweight client for a DCAE dockerized component to get it's config from the CBS", |
Tommy Carpenter | e8e4e38 | 2018-02-19 20:46:13 -0500 | [diff] [blame^] | 25 | version = "0.0.5", |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 26 | packages=find_packages(), |
| 27 | author = "Tommy Carpenter", |
Tommy Carpenter | f3f90e0 | 2017-09-20 21:01:20 -0400 | [diff] [blame] | 28 | author_email = "tommy@research.att.com", |
| 29 | license='Apache 2', |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 30 | keywords = "", |
| 31 | url = "", |
Tommy Carpenter | e8e4e38 | 2018-02-19 20:46:13 -0500 | [diff] [blame^] | 32 | install_requires = [ |
| 33 | "requests" |
| 34 | ] |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 35 | ) |