mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
32 lines
No EOL
950 B
Python
32 lines
No EOL
950 B
Python
#!/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='nick.satterly@guardian.co.uk',
|
|
packages= setuptools.find_packages(exclude=['bin', 'tests']),
|
|
scripts=['bin/alert-aws',
|
|
'bin/alert-checker',
|
|
'bin/alert-dynect',
|
|
'bin/alert-ganglia',
|
|
'bin/alert-ircbot',
|
|
'bin/alert-logger',
|
|
'bin/alert-mailer',
|
|
'bin/alert-notify',
|
|
'bin/alert-query',
|
|
'bin/alert-sender',
|
|
'bin/alert-snmptrap',
|
|
'bin/alert-syslog',
|
|
'bin/alert-urlmon',
|
|
'bin/alerta',
|
|
'bin/alerta-api',
|
|
],
|
|
keywords='alert monitoring system'
|
|
) |