forked from Yelp/elastalert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.53 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
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages
from setuptools import setup
base_dir = os.path.dirname(__file__)
setup(
name='elastalert',
version='0.1.35',
description='Runs custom filters on Elasticsearch and alerts on matches',
author='Quentin Long',
author_email='qlo@yelp.com',
setup_requires='setuptools',
license='Copyright 2014 Yelp',
classifiers=[
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': ['elastalert-create-index=elastalert.create_index:main',
'elastalert-test-rule=elastalert.test_rule:main',
'elastalert-rule-from-kibana=elastalert.rule_from_kibana:main',
'elastalert=elastalert.elastalert:main']},
packages=find_packages(),
package_data={'elastalert': ['schema.yaml']},
install_requires=[
'aws-requests-auth>=0.3.0',
'blist>=1.3.6',
'boto3>=1.4.4',
'configparser>=3.5.0',
'croniter>=0.3.16',
'elasticsearch',
'envparse>=0.2.0',
'exotel>=0.1.3',
'jira>=1.0.10,<1.0.15',
'jsonschema>=2.6.0,<3.0.0',
'mock>=2.0.0',
'PyStaticConfiguration>=0.10.3',
'python-dateutil>=2.6.0,<2.7.0',
'PyYAML>=3.12',
'requests>=2.10.0',
'stomp.py>=4.1.17',
'texttable>=0.8.8',
'twilio>=6.0.0,<6.1',
]
)