-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (35 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name='pywmi-wbem',
version='0.3.3',
description='Library for WMI interaction and Nagios checks',
author='David Voit, Alexander Lex',
author_email='david.voit@ams-osram.com, alexander.lex@ams-osram.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Monitoring',
'Programming Language :: Python :: 3',
],
install_requires=[
'requests',
'gssapi',
'pytz',
'lxml'
],
packages=find_packages('src'),
package_dir={'':'src'},
scripts=[
'nagios_checks/check_disk_wbem',
'nagios_checks/check_file_wbem',
'nagios_checks/check_load_wbem',
'nagios_checks/check_memory_wbem',
'nagios_checks/check_process_wbem',
'nagios_checks/check_remote_ping_wbem',
'nagios_checks/check_smart_wbem',
'nagios_checks/check_swap_wbem',
'nagios_checks/check_win_update_wbem',
'nagios_checks/check_win_task_wbem',
'nagios_checks/check_directory_wbem'
]
)