mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 22:12:38 +00:00
25 lines
599 B
Python
25 lines
599 B
Python
![]() |
from setuptools import setup, find_packages
|
||
|
|
||
|
version = '5.0.0'
|
||
|
|
||
|
setup(
|
||
|
name="alerta-azure-monitor",
|
||
|
version=version,
|
||
|
description='Alerta webhook for Azure Monitor',
|
||
|
url='https://github.com/alerta/alerta-contrib',
|
||
|
license='MIT',
|
||
|
author='Anton Delitsch',
|
||
|
author_email='anton@trugen.net',
|
||
|
packages=find_packages(),
|
||
|
py_modules=['alerta_azuremonitor'],
|
||
|
install_requires=[
|
||
|
],
|
||
|
include_package_data=True,
|
||
|
zip_safe=True,
|
||
|
entry_points={
|
||
|
'alerta.webhooks': [
|
||
|
'azuremonitor = alerta_azuremonitor:AzureMonitorWebhook'
|
||
|
]
|
||
|
}
|
||
|
)
|