blob: b1fb070ac25bda29fe6ca513f99f60140c178159 [file] [log] [blame]
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -05001# org.onap.dcae
2# ================================================================================
Hansen, Tony (th1395)475a6482021-07-19 23:45:06 +00003# Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved.
Michal Jagielloaa6f2f22021-01-15 13:04:54 +00004# Copyright 2021 Deutsche Telekom. All rights reserved.
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -05005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18#
19# ECOMP is a trademark and service mark of AT&T Intellectual Property.
20
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050021import os
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050022import string
23import sys
Vijay VK339ca1c2018-03-27 02:05:36 +010024import setuptools
25from setuptools import setup, find_packages
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050026
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050027
28setup(
Vijay VK339ca1c2018-03-27 02:05:36 +010029 name = "snmptrap",
Ladue, David (dl3158)fb0aff82018-03-18 23:16:42 -040030 description = "snmp trap receiver for ONAP docker image",
Hansen, Tony (th1395)2861c7f2021-10-27 00:32:01 +000031 version = "2.0.6",
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050032 packages=find_packages(),
Vijay VK339ca1c2018-03-27 02:05:36 +010033 install_requires=[
Michal Jagielloaa6f2f22021-01-15 13:04:54 +000034 "pysnmp==4.4.12",
Ladue, David (dl3158)9c9a86f2020-02-14 12:02:30 -050035 "requests==2.18.3",
Hansen, Tony (th1395)475a6482021-07-19 23:45:06 +000036 "onap_dcae_cbs_docker_client==2.2.1",
37 "pyyaml"
Vijay VK339ca1c2018-03-27 02:05:36 +010038 ],
Ladue, David (dl3158)abb283c2018-03-14 14:01:36 -040039 author = "Dave L",
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050040 author_email = "dl3158@att.com",
41 license='Apache 2',
42 keywords = "",
Vijay VK339ca1c2018-03-27 02:05:36 +010043 url = ""
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050044)