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 | |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 19 | from setuptools import setup, find_packages |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 20 | |
| 21 | setup( |
Tommy Carpenter | 426fd9d | 2018-03-12 11:29:33 -0400 | [diff] [blame] | 22 | 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 Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 25 | packages=find_packages(), |
Tommy Carpenter | 426fd9d | 2018-03-12 11:29:33 -0400 | [diff] [blame] | 26 | author="Tommy Carpenter", |
| 27 | author_email="tommy@research.att.com", |
Tommy Carpenter | f3f90e0 | 2017-09-20 21:01:20 -0400 | [diff] [blame] | 28 | license='Apache 2', |
Tommy Carpenter | 426fd9d | 2018-03-12 11:29:33 -0400 | [diff] [blame] | 29 | keywords="", |
| 30 | url="", |
| 31 | install_requires=[ |
| 32 | "requests>= 2.0.0, < 3.0.0" |
Tommy Carpenter | e8e4e38 | 2018-02-19 20:46:13 -0500 | [diff] [blame] | 33 | ] |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 34 | ) |