alerta-contrib/plugins/logstash/setup.py

24 lines
572 B
Python
Raw Normal View History

2016-09-14 12:01:37 +01:00
from setuptools import setup, find_packages
2016-09-15 10:16:11 +01:00
version = '0.3.1'
2016-09-14 12:01:37 +01:00
setup(
name="alerta-logstash",
version=version,
description='Alerta plugin for ELK logstash',
url='https://github.com/alerta/alerta-contrib',
license='Apache License 2.0',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-09-14 12:01:37 +01:00
packages=find_packages(),
py_modules=['alerta_logstash'],
include_package_data=True,
2016-09-14 12:01:37 +01:00
zip_safe=True,
entry_points={
'alerta.plugins': [
'logstash = alerta_logstash:LogStashOutput'
]
}
)