Hansen, Tony (th1395) | cf7f98a | 2021-12-02 20:42:43 +0000 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
Hansen, Tony (th1395) | 4b6b346 | 2022-08-17 21:36:24 +0000 | [diff] [blame] | 2 | # Copyright (c) 2017-2022 AT&T Intellectual Property. All rights reserved. |
Hansen, Tony (th1395) | cf7f98a | 2021-12-02 20:42:43 +0000 | [diff] [blame] | 3 | # Copyright (c) 2021 Deutsche Telekom. All rights reserved. |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [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========================================================= |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 17 | |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 18 | import os |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 19 | import string |
| 20 | import sys |
Vijay VK | 339ca1c | 2018-03-27 02:05:36 +0100 | [diff] [blame] | 21 | import setuptools |
| 22 | from setuptools import setup, find_packages |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 23 | |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 24 | |
| 25 | setup( |
Hansen, Tony (th1395) | cf7f98a | 2021-12-02 20:42:43 +0000 | [diff] [blame] | 26 | name="snmptrap", |
| 27 | description="snmp trap receiver for ONAP docker image", |
Hansen, Tony (th1395) | 4b6b346 | 2022-08-17 21:36:24 +0000 | [diff] [blame] | 28 | version="2.0.7", |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 29 | packages=find_packages(), |
Hansen, Tony (th1395) | cf7f98a | 2021-12-02 20:42:43 +0000 | [diff] [blame] | 30 | 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) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 36 | ) |