mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-16 21:43:30 +00:00
26 lines
598 B
Python
26 lines
598 B
Python
|
|
from setuptools import setup, find_packages
|
|
|
|
version = '5.0.2'
|
|
|
|
setup(
|
|
name="alerta-opsgenie",
|
|
version=version,
|
|
description='Alerta plugin for OpsGenie',
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
license='MIT',
|
|
author='Kurt Westerfeld',
|
|
author_email='kurt.westerfeld@gmail.com',
|
|
packages=find_packages(),
|
|
py_modules=['alerta_opsgenie'],
|
|
install_requires=[
|
|
'requests'
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
entry_points={
|
|
'alerta.plugins': [
|
|
'opsgenie = alerta_opsgenie:TriggerEvent'
|
|
]
|
|
}
|
|
)
|