mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 14:02:38 +00:00
24 lines
571 B
Python
24 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'
|
||
|
]
|
||
|
}
|
||
|
)
|