mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-19 14:43:18 +00:00
28 lines
595 B
Python
28 lines
595 B
Python
![]() |
#!/usr/bin/env python
|
||
|
|
||
|
import setuptools
|
||
|
|
||
|
version = '0.1.0'
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="alerta-slack",
|
||
|
version=version,
|
||
|
description='Alerta plugin for Slack',
|
||
|
url='https://github.com/alerta/alerta-contrib',
|
||
|
license='Apache License 2.0',
|
||
|
author='Nick Satterly',
|
||
|
author_email='nick.satterly@theguardian.com',
|
||
|
py_modules=['slack'],
|
||
|
install_requires=[
|
||
|
'requests',
|
||
|
'alerta-server'
|
||
|
],
|
||
|
include_package_data=True,
|
||
|
zip_safe=False,
|
||
|
entry_points={
|
||
|
'alerta.plugins': [
|
||
|
'slack = slack:ServiceIntegration'
|
||
|
]
|
||
|
}
|
||
|
)
|