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
|
# -*- 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.2.4',
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 :: 3.6',
'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', 'es_mappings/**/*.json']},
install_requires=[
'apscheduler',
'aws-requests-auth>=0.3.0',
'boto3>=1.4.4',
'croniter>=0.3.16',
'elasticsearch>=7.0.0',
'envparse>=0.2.0',
'exotel>=0.1.3',
'jira>=2.0.0',
'jsonschema>=3.0.2',
'mock>=2.0.0',
'prison>=0.1.2',
'PyStaticConfiguration>=0.10.3',
'python-dateutil>=2.6.0',
'PyYAML>=3.12',
'requests>=2.10.0',
'sortedcontainers',
'stomp.py>=4.1.17',
'texttable>=0.8.8',
'twilio>=6.0.0',
'python-magic>=0.4.15',
'cffi>=1.11.5'
]
)
|