0
0
mirror of https://github.com/alerta/alerta-contrib.git synced 2024-12-04 20:37:24 +00:00
alerta_alerta-contrib/plugins/goalert/setup.py
2023-03-21 00:15:34 +01:00

26 lines
573 B
Python

from setuptools import find_packages, setup
version = '5.0.3'
setup(
name='alerta-goalert',
version=version,
description='Alerta plugin for GoAlert',
url='https://github.com/alerta/alerta-contrib',
license='MIT',
author='SKob',
author_email='skobolo@gmail.com',
packages=find_packages(),
py_modules=['alerta_goalert'],
install_requires=[
'requests'
],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'goalert = alerta_goalert:TriggerEvent'
]
}
)