forked from lovoo/snmp_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.11 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
import os
from setuptools import setup
setup(
name = "snmp_exporter",
version = "0.0.3",
author = "Brian Brazil",
author_email = "[email protected]",
description = ("Python client for the Prometheus monitoring system."),
long_description = ("See https://github.com/prometheus/snmp_exporter/blob/master/README.md for documentation."),
license = "Apache Software License 2.0",
keywords = "prometheus exporter network monitoring snmp",
url = "https://github.com/brian-brazil/snmp_exporter",
scripts = ["scripts/snmp_exporter"],
packages=['snmp_exporter'],
test_suite="tests",
install_requires=[
"easysnmp>=0.2.4",
"google-apputils",
"prometheus_client>=0.0.11",
"python-gflags",
"pyyaml",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)