This repository has been archived by the owner on Dec 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
70 lines (63 loc) · 1.66 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# Copyright 2021 Splunk Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
[tool.poetry]
name = "splunk-connect-for-snmp-poller"
version = "0.1.0"
description = "Translate SNMP poller for Splunk Products"
authors = ["rfaircloth-splunk <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pysnmp = "^4.4.12"
pyyaml = "^5.4"
lxml = "^4.6"
requests = "^2.25.1"
schedule = "^1.0.0"
celery = "^5.1.2"
pymongo = {version = "^3.11.3", extras = ["srv"]}
jsoncomment = "^0.4.2"
aiohttp = "^3.7.4"
backoff = "^1.11.1"
[tool.poetry.dev-dependencies]
coverage = "^5.5"
pytest = "^6.2.5"
responses = "^0.14.0"
pytest-cov = "^2.12.1"
jsoncomment = "^0.4.2"
pre-commit = "^2.14.0"
[tool.poetry.scripts]
sc4snmp-poller = "splunk_connect_for_snmp_poller.snmp_poller_server:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
[tool.isort]
profile = "black"
[[tool.mypy.overrides]]
module = [
"celery.*",
"pysnmp.*",
"schedule",
"pysmi",
"pymongo.*",
"jsoncomment",
"requests",
"yaml",
]
ignore_missing_imports = true