Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 1 | # ================================================================================ |
Hansen, Tony (th1395) | 876d17b | 2021-06-22 21:12:32 +0000 | [diff] [blame] | 2 | # Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved. |
Edyta Krukowska | 1002e42 | 2021-05-12 12:00:07 +0200 | [diff] [blame] | 3 | # Copyright (C) 2021 Nokia. All rights reserved. |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 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========================================================= |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 17 | |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 18 | from setuptools import setup, find_packages |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 19 | |
| 20 | setup( |
Tommy Carpenter | 426fd9d | 2018-03-12 11:29:33 -0400 | [diff] [blame] | 21 | name="onap_dcae_cbs_docker_client", |
| 22 | description="very lightweight client for a DCAE dockerized component to get it's config from the CBS", |
Hansen, Tony (th1395) | 51348c0 | 2021-07-20 22:05:23 +0000 | [diff] [blame] | 23 | version="2.2.1", |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 24 | packages=find_packages(), |
Hansen, Tony (th1395) | 51348c0 | 2021-07-20 22:05:23 +0000 | [diff] [blame] | 25 | author="Tony Hansen", |
| 26 | author_email="tony@att.com", |
Tommy Carpenter | 6778c62 | 2019-06-19 14:54:53 +0000 | [diff] [blame] | 27 | license="Apache 2", |
Tommy Carpenter | 1474cbb | 2019-06-24 15:52:59 +0000 | [diff] [blame] | 28 | url="https://gerrit.onap.org/r/#/admin/projects/dcaegen2/utils", |
Tommy Carpenter | 6778c62 | 2019-06-19 14:54:53 +0000 | [diff] [blame] | 29 | install_requires=["requests>= 2.0.0, < 3.0.0"], |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 30 | ) |