-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
31 lines (29 loc) · 1.24 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
from setuptools import setup
setup(
name="hnmp",
version="0.5.1",
description="High-level Python SNMP library",
long_description="HNMP is a high-level Python library to ease the pain of retrieving and processing data from SNMP-capable devices such as network switches, routers, and printers. It's not meant to provide everything SNMP has to offer, but to get rid of most of the suck inherent to writing Munin or Icinga plugins that process SNMP data.",
author="Torsten Rehn",
author_email="[email protected]",
license="ISC",
url="https://github.com/trehn/hnmp",
keywords=["SNMP", "OID", "MIB"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware",
"Topic :: System :: Monitoring",
],
install_requires=[
"pysnmp >= 4.2.1",
],
py_modules=['hnmp'],
)