2018-07-11 20:52:30 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2019-04-02 22:06:19 +00:00
|
|
|
version = '5.0.2'
|
2018-07-11 20:52:30 +00:00
|
|
|
|
|
|
|
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=[
|
2019-03-02 13:35:27 +00:00
|
|
|
'python-dateutil'
|
2018-07-11 20:52:30 +00:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=True,
|
|
|
|
entry_points={
|
|
|
|
'alerta.webhooks': [
|
|
|
|
'azuremonitor = alerta_azuremonitor:AzureMonitorWebhook'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|