blob: 0fb95b03b1c778e83951e3bcf5bde9aff2c3d16f [file] [log] [blame]
Hansen, Tony (th1395)cf7f98a2021-12-02 20:42:43 +00001# ============LICENSE_START=======================================================
Hansen, Tony (th1395)4b6b3462022-08-17 21:36:24 +00002# Copyright (c) 2017-2022 AT&T Intellectual Property. All rights reserved.
Hansen, Tony (th1395)cf7f98a2021-12-02 20:42:43 +00003# Copyright (c) 2021 Deutsche Telekom. All rights reserved.
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -05004# ================================================================================
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=========================================================
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050017
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050018import os
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050019import string
20import sys
Vijay VK339ca1c2018-03-27 02:05:36 +010021import setuptools
22from setuptools import setup, find_packages
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050023
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050024
25setup(
Hansen, Tony (th1395)cf7f98a2021-12-02 20:42:43 +000026 name="snmptrap",
27 description="snmp trap receiver for ONAP docker image",
Hansen, Tony (th1395)4b6b3462022-08-17 21:36:24 +000028 version="2.0.7",
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050029 packages=find_packages(),
Hansen, Tony (th1395)cf7f98a2021-12-02 20:42:43 +000030 install_requires=["pysnmp==4.4.12", "requests==2.18.3", "onap_dcae_cbs_docker_client==2.2.1", "pyyaml"],
31 author="Dave L",
32 author_email="dl3158@att.com",
33 license="Apache 2",
34 keywords="",
35 url="",
Ladue, David (dl3158)ba9a3122018-01-23 10:25:08 -050036)