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 | from setuptools import setup, find_packages |
| 21 | from pip.req import parse_requirements |
| 22 | from pip.download import PipSession |
| 23 | |
| 24 | setup( |
Michael Hwang | 385a287 | 2017-09-20 15:17:51 -0400 | [diff] [blame] | 25 | name = "onap-dcae-discovery-client", |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 26 | version = "2.1.0", |
| 27 | packages = find_packages(), |
| 28 | author = "Michael Hwang", |
Lusheng Ji | d4c05d0 | 2017-09-21 03:22:18 +0000 | [diff] [blame] | 29 | email="mhwang@research.att.com", |
Michael Hwang | 385a287 | 2017-09-20 15:17:51 -0400 | [diff] [blame] | 30 | description = ("Library of discovery functionality"), |
Tommy Carpenter | f3f90e0 | 2017-09-20 21:01:20 -0400 | [diff] [blame] | 31 | license='Apache 2', |
Tommy Carpenter | 81b9ed7 | 2017-08-23 11:21:44 -0400 | [diff] [blame] | 32 | install_requires = [ |
| 33 | 'python-consul>=0.6.0,<1.0.0', |
| 34 | 'requests>=2.11.0,<3.0.0', |
| 35 | 'six>=1.10.0,<2.0.0'] |
| 36 | ) |