mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-16 21:43:30 +00:00
23 lines
571 B
Python
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'
|
|
]
|
|
}
|
|
)
|