2015-11-03 20:24:06 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
2019-05-17 14:57:33 +02:00
|
|
|
version = '5.2.1'
|
2015-11-03 20:24:06 +00:00
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="alerta-mailer",
|
|
|
|
version=version,
|
|
|
|
description='Send emails from Alerta',
|
|
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
|
|
license='MIT',
|
|
|
|
author='Nick Satterly',
|
|
|
|
author_email='nick.satterly@theguardian.com',
|
|
|
|
py_modules=['mailer'],
|
2016-03-02 17:35:07 -03:00
|
|
|
data_files=[('.', ['email.tmpl', 'email.html.tmpl'])],
|
2016-05-12 23:47:02 -03:00
|
|
|
setup_requires=['pytest-runner'],
|
|
|
|
tests_require=['pytest', 'mock', 'pytest-capturelog'],
|
2015-11-03 20:24:06 +00:00
|
|
|
install_requires=[
|
2017-10-08 12:58:54 +01:00
|
|
|
'alerta>=5.0.2',
|
2015-11-03 20:24:06 +00:00
|
|
|
'kombu',
|
|
|
|
'redis',
|
|
|
|
'jinja2'
|
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'alerta-mailer = mailer:main'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
keywords="alerta monitoring mailer sendmail smtp",
|
|
|
|
classifiers=[
|
|
|
|
'Topic :: System :: Monitoring',
|
|
|
|
]
|
|
|
|
)
|