forked from etingof/snmpsim
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
81 lines (75 loc) · 2.52 KB
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
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "snmpsim"
version = "1.2.1"
description = "SNMP Simulator is a tool that acts as multitude of SNMP Agents built into real physical devices, from SNMP Manager's point of view. Simulator builds and uses a database of physical devices' SNMP footprints to respond like their original counterparts do."
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = { text = "BSD-2-Clause" }
authors = [
{ name = "Ilya Etingof", email = "etingof@gmail.com" },
{ name = "LeXtudio Inc.", email = "support@lextudio.com" },
]
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",
]
dependencies = [
"pysnmp>=7.1.22,<8.0.0",
"pysmi>=1.6.2,<2.0.0",
]
[project.urls]
Repository = "https://github.com/lextudio/snmpsim"
[project.scripts]
snmpsim-manage-records = "snmpsim.commands.rec2rec:main"
snmpsim-record-mibs = "snmpsim.commands.mib2rec:main"
snmpsim-record-traffic = "snmpsim.commands.pcap2rec:main"
snmpsim-record-commands = "snmpsim.commands.cmd2rec:main"
snmpsim-command-responder = "snmpsim.commands.responder:main"
snmpsim-command-responder-lite = "snmpsim.commands.responder_lite:main"
[tool.hatch.build.targets.wheel]
packages = ["snmpsim"]
[tool.hatch.build.targets.sdist]
include = [
"snmpsim",
"docs",
"README.md",
"CHANGES.rst",
"THANKS.txt",
"TODO.txt",
"LICENSE.txt",
"MANIFEST.in",
]
[project.optional-dependencies]
dev = [
"codecov>=2.1.12,<3.0.0",
"cryptography>=43.0.0,<44.0.0",
"pysmi>=1.5.0,<2.0.0",
"pytest>=7.2.0,<8.0.0",
"pytest-asyncio>=0.21.1,<0.22.0",
"pytest-codecov>=0.4.0,<1.0.0",
"pytest-rerunfailures>=12.0,<13.0",
"tomli>=2.0.1,<3.0.0; python_version<'3.11'",
"Sphinx>=7.0.0,<8.0.0",
"sphinx-copybutton>=0.5.2,<0.6.0",
"sphinx-sitemap-lextudio>=2.5.2,<3.0.0",
"furo>=2024.1.1,<2025.0.0",
"black==23.1.0",
"pre-commit==2.21.0",
"doc8>=1.1.1,<2.0.0",
"sphinx-notfound-page>=1.0.0,<2.0.0",
"bump2version>=1.0.1",
]