0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-19 14:43:18 +00:00
alerta_alerta-contrib/plugins/mattermost/setup.py
abenaguev 378e022f43 add http proxy support for telegram plugin, add mattermost plugin ()
* add http proxy support

* add mattermost plugin
2018-09-12 15:30:53 +02:00

25 lines
616 B
Python

from setuptools import setup, find_packages
version = '1.1.3'
setup(
name="alerta-mattermost",
version=version,
description='Alerta plugin for Mattermost',
url='https://github.com/alerta/alerta-contrib',
license='MIT',
author='Dmitrii Sitnikov (WWHW)',
author_email='no-reply@wwhw.org',
packages=find_packages(),
py_modules=['alerta_mattermost'],
install_requires=[
'matterhook',
],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'mattermost = alerta_mattermost:ServiceIntegration'
]
}
)