-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.25 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
#!/usr/bin/env python3
import setuptools
version = '0.2.0'
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='check__pcmeasure.py',
version=version,
author='Dr. Marco Roose',
author_email='[email protected]',
url='https://github.com/mpibpc-mroose/nagios_plugin_pcmeasure/',
license='GPL-3.0',
description='Nagios/Icinga2 Plugin for ethernet sensor boxes from http://messpc.de and http://pcmeasure.com',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[],
python_requires='>=3.5',
packages=setuptools.find_packages(),
project_urls={
'Source': 'https://github.com/mpibpc-mroose/nagios_plugin_pcmeasure/',
'Nagios Exchange': 'https://exchange.nagios.org/',
'Icinga Exchange': 'https://exchange.icinga.com',
},
keywords=[
'Nagios',
'Icinga2',
'pcmeasure',
'messpc',
'etherbox'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)