0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 14:02:38 +00:00
alerta_alerta-contrib/plugins/dingtalk/setup.py
2020-01-21 15:09:14 +01:00

24 lines
584 B
Python

from setuptools import setup, find_packages
version = '0.0.1'
setup(
name="alerta-ding",
version=version,
description='Example Alerta plugin for test alerts',
url='https://github.com/alerta/alerta-contrib',
license='Apache License 2.0',
author='Komal Gupta',
author_email='komalg038@gmail.com',
packages=find_packages(),
py_modules=['alerta_ding'],
install_requires=[],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'dingtalk = alerta_ding:ServiceIntegration'
]
}
)