forked from jertel/elastalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (58 loc) · 1.98 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
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages
from setuptools import setup
base_dir = os.path.dirname(__file__)
setup(
name='elastalert2',
version='2.9.0',
description='Automated rule-based alerting for Elasticsearch',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/jertel/elastalert2",
setup_requires='setuptools',
license='Apache 2.0',
project_urls={
"Documentation": "https://elastalert2.readthedocs.io",
"Source Code": "https://github.com/jertel/elastalert2",
"Discussion Forum": "https://github.com/jertel/elastalert2/discussions",
},
classifiers=[
'Programming Language :: Python :: 3.11',
'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=elastalert.elastalert:main']},
packages=find_packages(exclude=["tests"]),
package_data={'elastalert': ['schema.yaml', 'es_mappings/**/*.json']},
install_requires=[
'apscheduler>=3.9.1.post1,<4.0',
'aws-requests-auth>=0.4.3',
'boto3>=1.26.30',
'cffi>=1.15.1',
'croniter>=1.3.8',
'elasticsearch==7.10.1',
'envparse>=0.2.0',
'exotel==0.1.5',
'Jinja2>=3.1.2',
'jira>=3.4.1',
'jsonpointer>=2.3',
'jsonschema>=4.17.3',
'prison>=0.2.1',
'prometheus_client>=0.15.0',
'python-dateutil>=2.8.2',
'PyYAML>=6.0',
'py-zabbix>=1.1.7',
'requests>=2.8.2',
'sortedcontainers>=2.4.0',
'statsd-tags==3.2.1.post1',
'stomp.py>=8.1.0',
'tencentcloud-sdk-python>=3.0.795',
'texttable>=1.6.7',
'twilio>=7.16.0',
'tzlocal==2.1'
]
)