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/plugins/telegram/setup.py

27 lines
616 B
Python

from setuptools import setup, find_packages
version = '5.1.3'
setup(
name="alerta-telegram",
version=version,
description='Alerta plugin for Telegram',
url='https://github.com/alerta/alerta-contrib',
license='MIT',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
packages=find_packages(),
py_modules=['alerta_telegram'],
install_requires=[
'telepot',
'jinja2'
],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'telegram = alerta_telegram:TelegramBot'
]
}
)