26 lines
575 B
Python
26 lines
575 B
Python
from setuptools import find_packages, setup
|
|
|
|
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'
|
|
]
|
|
}
|
|
)
|