0
0
Fork 0
mirror of https://github.com/alerta/alerta.git synced 2025-02-05 05:59:43 +00:00
alerta_alerta/examples/plugins/routing/setup.py
2018-09-16 00:20:53 +02:00

24 lines
585 B
Python

from setuptools import find_packages, setup
version = '0.0.1'
setup(
name='alerta-routing',
version=version,
description='Alerta routing rules for blackout notifications',
url='https://github.com/alerta/alerta-contrib',
license='Apache License 2.0',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
packages=find_packages(),
py_modules=['routing'],
install_requires=[],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.routing': [
'rules = routing:rules'
]
}
)