-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathsetup.py
36 lines (33 loc) · 887 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import setuptools
version = '5.2.1'
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='[email protected]',
py_modules=['mailer'],
data_files=[('.', ['email.tmpl', 'email.html.tmpl'])],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'mock', 'pytest-capturelog'],
install_requires=[
'alerta>=5.0.2',
'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',
]
)