-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 829 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
from distutils.core import setup
setup(
name = 'nagios-check_multiple',
version = '0.0.1',
maintainer = 'Clark A',
maintainer_email = '[email protected]',
url = 'https://github.com/clarkbox/check_multiple',
scripts = ['bin/check_multiple'],
packages = ['check_multiple'],
package_dir = {'check_multiple': 'lib/check_multiple'},
description = 'Run multiple Nagios checks and combine the results',
long_description=open('README.md').read(),
classifiers = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
]
)