-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 780 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 780 Bytes
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "snmp-poller"
version = "0.4.0"
description = "Concurrent SNMPv3 polling application using asyncio"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{name = "Salvatore Cuzzilla", email = "salvatore@cuzzilla.org"},
]
dependencies = [
"pyaml>=20.4.0",
"pysnmp>=7",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"coverage",
]
[project.scripts]
snmp-poller = "snmp_poller.poller:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: requires podman and snmpd-test container image",
]