blob: 8648808fa3cd36da6b31237ed68fd83e5a308ea2 [file] [log] [blame]
Tommy Carpenter81b9ed72017-08-23 11:21:44 -04001# 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
20from setuptools import setup, find_packages
21from pip.req import parse_requirements
22from pip.download import PipSession
23
24setup(
Michael Hwang385a2872017-09-20 15:17:51 -040025 name = "onap-dcae-discovery-client",
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040026 version = "2.1.0",
27 packages = find_packages(),
28 author = "Michael Hwang",
Lusheng Jid4c05d02017-09-21 03:22:18 +000029 email="mhwang@research.att.com",
Michael Hwang385a2872017-09-20 15:17:51 -040030 description = ("Library of discovery functionality"),
Tommy Carpenterf3f90e02017-09-20 21:01:20 -040031 license='Apache 2',
Tommy Carpenter81b9ed72017-08-23 11:21:44 -040032 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 )