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/logstash/setup.py
2018-04-17 12:42:52 +02:00

23 lines
557 B
Python

from setuptools import setup, find_packages
version = '5.3.3'
setup(
name="alerta-logstash",
version=version,
description='Alerta plugin for ELK logstash',
url='https://github.com/alerta/alerta-contrib',
license='MIT',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
packages=find_packages(),
py_modules=['alerta_logstash'],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'logstash = alerta_logstash:LogStashOutput'
]
}
)