-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
59 lines (53 loc) · 1.54 KB
/
setup.cfg
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
[metadata]
name = es_stats_zabbix
description = "Collect stats from es_stats for ingest by Zabbix"
long_description = file: README.rst
version = attr: es_stats_zabbix.__version__
author = Aaron Mildenstein
author_email = [email protected]
url = http://github.com/untergeek/es_stats_zabbix
license = Apache License, Version 2.0
keywords = elasticsearch stats
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
[options]
packages = es_stats_zabbix
include_package_data = True
install_requires =
setuptools>=30.3.0
flask_restful>=0.3.6
click>=6.7,<7.0
es_client>=1.1.1
es_stats>=1.2.0
protobix>=1.0.1
setup_requires =
setuptools>=30.3.0
flask_restful>=0.3.6
click>=6.7,<7.0
es_client>=1.1.1
es_stats>=1.2.0
protobix>=1.0.1
tests_require =
mock
nose
coverage
nosexcover
[options.entry_points]
console_scripts =
esz_backend = es_stats_zabbix.cli.entrypoint:run
esz_discovery = es_stats_zabbix.cli.entrypoint:run
esz_get_stat = es_stats_zabbix.cli.entrypoint:run
esz_cluster_discovery = es_stats_zabbix.cli.entrypoint:run
esz_node_discovery = es_stats_zabbix.cli.entrypoint:run
esz_trapper_discovery = es_stats_zabbix.cli.entrypoint:run
esz_trapper_stats = es_stats_zabbix.cli.entrypoint:run
[options.packages.find]
exclude =
tests
[bdist_wheel]
universal=1