-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
42 lines (37 loc) · 1.25 KB
/
setup.py
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
from setuptools import setup
setup(
name = "pyagentx3",
version = "0.1.4",
author = "Richard Prinz",
author_email = "[email protected]",
description = ("AgentX package to extend SNMP with pure Python3.10"),
license = "BSD",
keywords = "snmp network agentx ",
url = "https://github.com/rprinz08/pyagentx3",
packages=['pyagentx3'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Environment :: No Input/Output (Daemon)",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
],
long_description='''\
PyAgentX3
--------------------
pyagentx3 is a pure Python3 implementation of AgentX protocol (RFC 2741), it
will allow you to extend an SNMP agent (e.g. snmpd) by writing AgentX subagents,
without modifying the original SNMP agent.
The agent can support the following commands:
- snmpget
- snmpwalk
- snmptable
- snmpset
It also allows sending notifications/traps.
''',
)