mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-16 21:43:30 +00:00

* msteams: MS_TEAMS_INBOUNDWEBHOOK_URL MS_TEAMS_APIKEY for msteams webhook * msteams(webhook) * msteams: escape backslashes (SCOM) in example-payload.json.j2 * msteams webhook: use list not a tuple. * msteams webhook: comment tests that need mocking * msteams webhook: tests: only send Content-Type header.
27 lines
622 B
Python
27 lines
622 B
Python
|
|
from setuptools import setup, find_packages
|
|
|
|
version = '5.2.1'
|
|
|
|
setup(
|
|
name="alerta-msteams",
|
|
version=version,
|
|
description='Alerta plugin for Microsoft Teams',
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
license='MIT',
|
|
author='Anton Delitsch',
|
|
author_email='anton@trugen.net',
|
|
packages=find_packages(),
|
|
py_modules=['alerta_msteams'],
|
|
install_requires=[
|
|
'pymsteams',
|
|
'jinja2'
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
entry_points={
|
|
'alerta.plugins': [
|
|
'msteams = alerta_msteams:SendConnectorCardMessage'
|
|
]
|
|
}
|
|
)
|