-
Notifications
You must be signed in to change notification settings - Fork 56
/
dev-requirements-new.txt
91 lines (75 loc) · 2.99 KB
/
dev-requirements-new.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# This file contains absolutely all requirements that may be needed by any component of this project including
# testing and building requirements.
# All requirements are separated to certain groups or components that are used for a particular reason.
# Each such component has to begin with a special comment - '<COMPONENT:COMPONENT_NAME>'.
# Agent's common requirements. Expected to installed on any type of agent.
# <COMPONENT:COMMON>
requests==2.31.0; python_version >= '3.7'
requests==2.25.1; python_version < '3.7'
python-dateutil==2.8.2
repoze.lru==0.7
six==1.16.0
urllib3==1.26.20
# Required for redis monitor.
redis==2.10.5
# Required for mysql monitor
PyMySQL==0.10.1; python_version < '3.7'
PyMySQL==1.1.1; python_version >= '3.7'
# Required for postgres monitor
pg8000==1.10.6
# Required for snmp monitor
pysnmp==4.4.12; platform_system != 'Windows' and platform_system != 'Darwin'
# Required for syslog monitor
syslogmp==0.3; python_version >= '3.6'
docker==6.1.3; python_version >= '3.7'
docker==5.0.3; python_version == '3.6'
docker==4.4.4; python_version < '3.6'
# Used for performance optimized versions of rfc3339_to_* functions
# NOTE: Not supported on windows
udatetime==0.0.17; platform_system != 'Windows'
psutil==5.7.0
# Agent's common requirements, but only for platform-dependent types of agent.
# <COMPONENT:COMMON_PLATFORM_DEPENDENT>
orjson==3.10.7; python_version >= '3.7' and platform_system != 'Darwin'
orjson==3.6.1; python_version == '3.6' and platform_system != 'Darwin'
orjson==2.0.11; python_version == '3.5' and platform_system != 'Darwin'
zstandard==0.19.0; python_version >= '3.7'
zstandard==0.18.0; python_version >= '3.6' and python_version < '3.7'
zstandard==0.15.2; python_version >= '3.5' and python_version < '3.6'
zstandard==0.14.1; python_version < '3.5'
lz4==4.0.2; python_version >= '3.7'
lz4==3.1.1; python_version >= '3.5' and python_version <= '3.6'
lz4==2.2.1; python_version < '3.5'
pywin32==304; platform_system == 'Windows'
xmltodict==0.13.0; platform_system == 'Windows'
# Agent build requirements.
# <COMPONENT:BUILD>
PyInstaller==5.13.0; python_version >= '3.7'
# Dev and testing requirements.
# <COMPONENT:DEV_COVERAGE>
coverage==4.5.4
# <COMPONENT:DEV_COMMON>
# Testing tools and libraries
boto3==1.35.7; python_version >= '3.7'
paramiko==2.12.0
mock==3.0.5
pytest==4.6.9; python_version < '3.0'
pytest==7.0.1; python_version >= '3.5' and python_version < '3.7'
pytest==7.1.2; python_version >= '3.7'
pytest-coverage
pytest-timeout==1.4.2; python_version < '3.0'
pytest-timeout==2.1.0; python_version > '3.0' and python_version < '3.7'
pytest-timeout==2.3.1; python_version >= '3.7'
requests_mock==1.9.3
pygal==3.0.0
pytest-benchmark==3.2.3; python_version < '3.7'
pytest-benchmark==4.0.0; python_version >= '3.7'
pytest-xdist==1.31.0
decorator==4.4.1
requests-mock==1.9.3
flask==2.2.5; python_version >= '3.7'
flask==1.1.1; python_version < '3.7'
distro==1.6.0
futures==3.4.0; python_version < '3'
xmltodict==0.13.0; python_version >= '3.7'
xmltodict==0.12.0; python_version < '3.7'