alerta-contrib/plugins/slack/setup.py

26 lines
590 B
Python
Raw Normal View History

2023-03-20 23:39:34 +01:00
from setuptools import find_packages, setup
2014-12-17 00:14:03 +00:00
version = '5.5.2'
2014-12-17 00:14:03 +00:00
2016-09-14 12:01:37 +01:00
setup(
2023-03-20 23:39:34 +01:00
name='alerta-slack',
2014-12-17 00:14:03 +00:00
version=version,
description='Alerta plugin for Slack',
url='https://github.com/alerta/alerta-contrib',
2016-11-22 10:08:59 +00:00
license='MIT',
2014-12-17 00:14:03 +00:00
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-09-14 12:01:37 +01:00
packages=find_packages(),
py_modules=['alerta_slack'],
2014-12-17 00:14:03 +00:00
install_requires=[
2016-09-14 12:01:37 +01:00
'requests'
2014-12-17 00:14:03 +00:00
],
include_package_data=True,
2016-09-14 12:01:37 +01:00
zip_safe=True,
2014-12-17 00:14:03 +00:00
entry_points={
'alerta.plugins': [
'slack = alerta_slack:ServiceIntegration'
2014-12-17 00:14:03 +00:00
]
}
)