Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 1 | # org.onap.dcae |
| 2 | # ================================================================================ |
Hansen, Tony (th1395) | 475a648 | 2021-07-19 23:45:06 +0000 | [diff] [blame] | 3 | # Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved. |
Michal Jagiello | aa6f2f2 | 2021-01-15 13:04:54 +0000 | [diff] [blame] | 4 | # Copyright 2021 Deutsche Telekom. All rights reserved. |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 5 | # ================================================================================ |
| 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) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 21 | import os |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 22 | import string |
| 23 | import sys |
Vijay VK | 339ca1c | 2018-03-27 02:05:36 +0100 | [diff] [blame] | 24 | import setuptools |
| 25 | from setuptools import setup, find_packages |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 26 | |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 27 | |
| 28 | setup( |
Vijay VK | 339ca1c | 2018-03-27 02:05:36 +0100 | [diff] [blame] | 29 | name = "snmptrap", |
Ladue, David (dl3158) | fb0aff8 | 2018-03-18 23:16:42 -0400 | [diff] [blame] | 30 | description = "snmp trap receiver for ONAP docker image", |
Hansen, Tony (th1395) | 2861c7f | 2021-10-27 00:32:01 +0000 | [diff] [blame^] | 31 | version = "2.0.6", |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 32 | packages=find_packages(), |
Vijay VK | 339ca1c | 2018-03-27 02:05:36 +0100 | [diff] [blame] | 33 | install_requires=[ |
Michal Jagiello | aa6f2f2 | 2021-01-15 13:04:54 +0000 | [diff] [blame] | 34 | "pysnmp==4.4.12", |
Ladue, David (dl3158) | 9c9a86f | 2020-02-14 12:02:30 -0500 | [diff] [blame] | 35 | "requests==2.18.3", |
Hansen, Tony (th1395) | 475a648 | 2021-07-19 23:45:06 +0000 | [diff] [blame] | 36 | "onap_dcae_cbs_docker_client==2.2.1", |
| 37 | "pyyaml" |
Vijay VK | 339ca1c | 2018-03-27 02:05:36 +0100 | [diff] [blame] | 38 | ], |
Ladue, David (dl3158) | abb283c | 2018-03-14 14:01:36 -0400 | [diff] [blame] | 39 | author = "Dave L", |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 40 | author_email = "dl3158@att.com", |
| 41 | license='Apache 2', |
| 42 | keywords = "", |
Vijay VK | 339ca1c | 2018-03-27 02:05:36 +0100 | [diff] [blame] | 43 | url = "" |
Ladue, David (dl3158) | ba9a312 | 2018-01-23 10:25:08 -0500 | [diff] [blame] | 44 | ) |