-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
54 lines (42 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
51
52
53
"""
Installs ecks using setuputils
Run:
python setup.py install
to install this package using this script.
To install the latest public release use run:
pip install ecks
"""
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup, find_packages
import sys
import ecks
required_python_version = '2.6'
if sys.version < required_python_version:
print "Ecks requires python %s or later, you have %s" % (required_python_version, sys.version)
sys.exit(1)
setup(
name = "Ecks",
version = "0.11-dev",
description = "Easy access to SNMP data",
long_description = "A simple way to get data out of a remote machine using SNMP without having to deal with a single MIB or OID.",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring"
],
author = "Chris Read",
author_email = "[email protected]",
url = "http://github.com/cread/ecks",
license = "Apache 2.0",
packages = find_packages(),
keywords = "snmp monitoring",
install_requires = "pysnmp >= 4.2.2"
)