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

* fix * comments * forward plugin: [fix] ability to configure via env + refactor via @satterly comment
26 lines
576 B
Python
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'
|
|
]
|
|
}
|
|
)
|