0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-16 21:43:30 +00:00
alerta_alerta-contrib/webhooks/fail2ban/setup.py
2018-12-02 20:26:57 +01:00

23 lines
571 B
Python

from setuptools import setup, find_packages
version = '1.0.0'
setup(
name="alerta-fail2ban",
version=version,
description='Alerta Webhook for Fail2Ban',
url='https://github.com/alerta/alerta-contrib',
license='MIT',
author='Milos Buncic',
author_email='milosbuncic@gmail.com',
packages=find_packages(),
py_modules=['alerta_fail2ban'],
install_requires=[],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.webhooks': [
'fail2ban = alerta_fail2ban:Fail2BanWebhook'
]
}
)