-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
31 lines (29 loc) · 1.05 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='pynagsystemd',
packages=find_packages(),
version='1.2.0',
scripts=['bin/pynagsystemd.py'],
install_requires=[
'nagiosplugin>=1.2',
],
description='A simple nagios plugin that detects failed systemd units.',
author='Andrea Briganti',
author_email='[email protected]',
url='https://github.com/kbytesys/pynagsystemd',
download_url='https://github.com/kbytesys/pynagsystemd/tarball/v1.2.0',
keywords=['nagios', 'systemd'],
license='GNU LGPL v2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Networking :: Monitoring'
],
)