mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 05:52:38 +00:00

* Incoming email using mailgun
* Fallback if mailgun failed to parse as plain text
* Revert "Fallback if mailgun failed to parse as plain text"
This reverts commit 998a3f54b9
.
* Fallback if mailgun failed to parse as plain text
* Timestamp is not UTC so can't be converted to alert timestamp
24 lines
567 B
Python
24 lines
567 B
Python
from setuptools import setup, find_packages
|
|
|
|
version = '5.0.0'
|
|
|
|
setup(
|
|
name="alerta-mailgun",
|
|
version=version,
|
|
description='Alerta webhook for Mailgun',
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
license='MIT',
|
|
author='Anton Delitsch',
|
|
author_email='anton@trugen.net',
|
|
packages=find_packages(),
|
|
py_modules=['alerta_mailgun'],
|
|
install_requires=[
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
entry_points={
|
|
'alerta.webhooks': [
|
|
'mailgun = alerta_mailgun:MailgunWebhook'
|
|
]
|
|
}
|
|
)
|