0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 05:52:38 +00:00
alerta_alerta-contrib/plugins/alertops/setup.py
kamsrikanth 345518f3df Add AlertOps Plugin (#298)
* First commit

* Update README.md

Trigger Alerts in AlertOps.

* Revised Config Variables

* Update AlertOps Alerta Documentation Link
2019-10-03 09:26:02 +02:00

25 lines
597 B
Python

from setuptools import setup, find_packages
version = '1.0.0.1'
setup(
name="alerta-alertops",
version=version,
description='Alerta plugin for AlertOps',
url='https://github.com/alerta/alerta-contrib',
license='AlertOps',
author='Kam Srikanth',
author_email='kamleshs@alertops.com',
packages=find_packages(),
py_modules=['alerta_alertops'],
install_requires=[
'requests'
],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'alertops = alerta_alertops:TriggerEvent'
]
}
)