forked from alerta/alerta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (61 loc) · 1.93 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
import setuptools
with open('alerta/version.py') as f:
exec(f.read())
with open('README.rst') as f:
readme = f.read()
setuptools.setup(
name='alerta-server',
namespace_packages=['alerta'],
version=__version__,
description='Alerta server WSGI application',
long_description=readme,
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']),
install_requires=[
'alerta',
'Flask',
'Flask-Cors',
'pymongo>=3.0',
'kombu',
'boto',
'argparse',
'requests',
'requests-oauthlib',
'pytz',
'PyJWT',
'cffi',
'bcrypt'
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'alertad = alerta.app:main'
],
'alerta.plugins': [
'reject = alerta.plugins.reject:RejectPolicy',
'normalise = alerta.plugins.normalise:NormaliseAlert',
'enhance = alerta.plugins.enhance:EnhanceAlert',
'amqp = alerta.plugins.amqp:FanoutPublisher',
'sns = alerta.plugins.sns:SnsTopicPublisher',
'logstash = alerta.plugins.logstash:LogStashOutput',
],
},
keywords='alert monitoring system wsgi application api',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: Flask',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Monitoring',
],
)