0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 14:02:38 +00:00
alerta_alerta-contrib/plugins/logstash/setup.py
2017-09-17 16:22:46 +01:00

23 lines
557 B
Python

from setuptools import setup, find_packages
version = '5.3.1'
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'
]
}
)