forked from Alignak-monitoring/alignak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
38 lines (29 loc) · 1.28 KB
/
requirements.txt
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
# CherryPy >= 5.1.0 and PyOpenssl == 0.14 (16 seems broken) are required for proper HTTPS setup
# They are not added as hard dependencies here so that packaging works fine
# CherryPy is not packaged anymore since v3.5XX so we let it as is.
# Keep a CherryPy lower than 9.0 because WSGIServer is not more shipped with CherryPy
CherryPy<9.0.0
# Requests to communicate between the daemons
# Version <=2.14.2 else some tests using requests-mock are broken with the 2.16.0 version
requests>=2.7.0,<=2.14.2
# importlib is used to import modules used by the daemons
importlib
# colored console log
termcolor
# Set process titles
setproctitle
# ujson is used for the internal objects serialization
ujson
# numpy for date and percentile computation
numpy<1.12.0; python_version < '2.7'
numpy; python_version >= '2.7'
# SSL between the daemons
# This requirement is only a requirement if you intend to use SLL for the inter-daemons
# communication. As such, to avoid installing this library per default, commenting this line!
# Uncomment or `pip install pyopenssl` if SSL must be used between the Alignak daemons
# pyopenssl
# docopt is used by the alignak_environment script
docopt
# Use psutil for daemons memory monitoring (env ALIGNAK_DAEMONS_MONITORING)
# Use psutil for scheduler TEST_LOG_MONITORING
psutil