0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-18 14:22:52 +00:00
alerta_alerta-contrib/plugins/cachet/setup.py
2016-12-18 00:23:00 +00:00

26 lines
630 B
Python

from setuptools import setup, find_packages
version = '0.0.1'
setup(
name="alerta-cachet",
version=version,
description='Alerta plugin for Cachet status page',
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=['alerta_cachet'],
install_requires=[
'python-cachetclient'
],
include_package_data=True,
zip_safe=True,
entry_points={
'alerta.plugins': [
'cachet = alerta_cachet:CachetIncident'
]
}
)