forked from alerta/alerta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.02 KB
/
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
#!/usr/bin/env python
import setuptools
from alerta import get_version
setuptools.setup(
name="alerta",
version=get_version(),
description='Alerta monitoring framework',
url='https://github.com/guardian/alerta',
license='Apache License 2.0',
author='Nick Satterly',
author_email='[email protected]',
packages= setuptools.find_packages(exclude=['bin', 'tests']),
include_package_data=True,
zip_safe=False,
scripts=['bin/alert-aws',
'bin/alert-checker',
'bin/alert-dynect',
'bin/alert-ircbot',
'bin/alert-logger',
'bin/alert-mailer',
'bin/alert-pagerduty',
'bin/alert-pinger',
'bin/alert-query',
'bin/alert-sender',
'bin/alert-snmptrap',
'bin/alert-solarwinds',
'bin/alert-syslog',
'bin/alert-urlmon',
'bin/alerta',
'bin/alerta-api',
],
keywords='alert monitoring system'
)