-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
33 lines (26 loc) · 911 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import nagioscheck
setup(
name = 'nagioscheck',
version = nagioscheck.__version__,
author = 'Saj Goonatilleke',
author_email = '[email protected]',
description = 'A Python framework for Nagios plug-in developers',
long_description = """
pynagioscheck is a Python framework for Nagios plug-in developers.
pynagioscheck strives to conform to the practices described in the
Nagios Plug-in Development Guidelines and, more importantly, save
valuable system administrator time.
""",
license = 'BSD',
platforms = [ 'Linux', 'Unix' ],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
],
py_modules = ['nagioscheck'],
)