forked from etingof/snmpresponder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (48 loc) · 1.64 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
[tool.poetry]
name = "snmpresponder"
version = "0.0.6"
description = "The SNMP Command Responder application is designed to serve user data over SNMPv1/v2c/v3."
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/lextudio/snmpresponder"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Communications",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring"
]
readme = "README.md"
packages = [
{ include = "snmpresponder" },
]
include = ["docs", "tests", "examples"]
[tool.poetry.dependencies]
python = "^3.8"
pysnmp = ">=5.0.0,<7.0.0"
[tool.poetry.dev-dependencies]
codecov = "^2.1.12"
pytest = "^6.2.5"
pytest-codecov = "^0.4.0"
Sphinx = "^5.0.0"
sphinx-copybutton = "^0.5.2"
sphinx-sitemap-lextudio = "^2.5.2"
furo = "^2023.1.1"
sphinx-notfound-page = "^1.0.0"
[tool.poetry_bumpversion.file."snmpresponder/__init__.py"]
[tool.poetry_bumpversion.file."docs/source/conf.py"]
search = "release = '{current_version}'"
replace = "release = '{new_version}'"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
snmpdresponderd = "snmpresponder.snmpresponderd:main"