-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 841 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 841 Bytes
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
from setuptools import find_packages, setup
version = '4.0.0'
setup(
name='zabbix-alerta',
version=version,
description='Forward Zabbix events to Alerta',
url='https://github.com/alerta/zabbix-alerta',
license='MIT',
author='Nick Satterly',
author_email='nick.satterly@gmail.com',
packages=find_packages(),
py_modules=['zabbix_alerta', 'zabbix_config'],
install_requires=[
'alerta>=5.0.2',
'Click',
'pyzabbix',
'protobix'
],
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': [
'zabbix-alerta = zabbix_alerta:cli',
'zac = zabbix_config:main'
]
},
keywords='alert monitoring zabbix',
classifiers=[
'Topic :: System :: Monitoring'
],
python_requires='>=3.6'
)