forked from hosthvo/pyagentx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.18 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
from setuptools import setup
setup(
name = "pyagentx",
version = "0.4.1",
author = "Rayed Alrashed",
author_email = "[email protected]",
description = ("AgentX package to extend SNMP with pure Python"),
license = "BSD",
keywords = "snmp network agentx ",
url = "https://github.com/rayed/pyagentx",
packages=['pyagentx'],
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='''\
PyAgentX
--------------------
pyagentx is a pure Python implementation of AgentX protocol (RFC 2741), it
will allow you to extend SNMP agent (snmpd) by writing AgentX subagents,
without modifying your original SNMP agent.
The agent can support the following commands:
- snmpget
- snmpwalk
- snmptable
- snmpset
''',
)