0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-16 21:43:30 +00:00
alerta_alerta-contrib/plugins/forward/setup.py
skob dacc85890d forward plugin (ex-191 MR) (#192)
* fix

* comments

* forward plugin: [fix] ability to configure via env + refactor via @satterly comment
2018-04-25 23:18:13 +02:00

26 lines
576 B
Python

from setuptools import setup, find_packages
version = '5.0.0'
setup(
name="alerta-forward",
version=version,
description='Alerta plugin for forwarding alerts',
url='https://github.com/alerta/alerta-contrib',
license='MIT',
author='SKob',
author_email='skob@me.com',
packages=find_packages(),
py_modules=['alerta_forward'],
include_package_data=True,
zip_safe=True,
install_requires=[
'alerta'
],
entry_points={
'alerta.plugins': [
'forward = alerta_forward:ForwardAlert'
]
}
)