-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 719 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name="nagios-load-per-core",
description="Nagios plugin to check load normalized by core count",
long_description=open('README.rst').read(),
version="0.1.2",
packages=find_packages(),
author="Carl Flippin",
author_email="carlf@photocarl.org",
url="https://github.com/carlf/nagios-load-per-core",
scripts=['check-load-by-core'],
license="MIT",
install_requires = ['pynagios'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Topic :: System :: Monitoring',
'License :: OSI Approved :: MIT License'
]
)