forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
205 lines (202 loc) · 10.5 KB
/
Pipfile
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
[[source]]
url = "${PIPENV_PYPI_MIRROR}"
verify_ssl = true
name = "pypi"
[dev-packages]
3to2 = "*" # used for converting agent plugins from py3 to 2
astroid = "*" # used by testlib.pylint_checker_localization
autoflake = "*" # used to remove unused import statements
azure-mgmt-resource = "*" # used by the release process to publish the azure image to the marketplace
azure-mgmt-compute = "*" # used by the release process to add a new image version
bandit = "*" # used by test/Makefile's test-bandit target
"beautifulsoup4" = "*" # used by the GUI crawler and various tests
boto3-stubs = {extras = ["logs"], version = "==1.34.15"} # used for type checking, keep version in sync with boto3
botocore-stubs = "==1.34.15" # used for type checking, keep version in sync with botocore
bson = "*" # used by test_mk_mongodb unit test
checkmk-dev-tools = "~=0.1.60" # provides tooling for build artifacts
compiledb = "*" # used by the Livestatus/CMC Makefiles for building compile_command.json
devpi-client = "*" # Managing the devpi server
dill = "*"
docker = "*" # used by test_docker test and mk_docker agent plugin
dockerpty = "*" # used by dockerized tests for opening debug shells
fakeredis = {version = "*", extras = ["lua"]} # used for testing code which uses Redis (lua is needed for faking features like "lock")
fastapi = "*" # needed to run fake idp for cse tests
flake8 = "*"
hypothesis = "*" # used by unit tests
hypothesis-jsonschema = "*" # used by unit tests
isort = "*" # used as a plugin for editors
jsonschema = "*"
libcst = "*" # concrete syntax trees for plugin migration helpers
msrest = "*"
mypy = "*" # used by test/static/Makefile's test-mypy target
mypy-protobuf = "*" # for mypy
networkx = "*" # needed for py-import-cycles
pexpect = "*" # used for update testing
pipfile = "*" # for generating import names during int tests
playwright = "*" # used for in-browser testing
polyfactory = "*" # used for generating mock data for unit tests
pre-commit = "*" # used to fix / find issues before committing changes
py-import-cycles = "*" # used in tests/Makefile
pylint = "*" # used by test/Makefile's test-pylint target
pylint-pydantic = "*"
pyls-isort = "*" # isort plugin for python-lsp-server
pylsp-mypy = "*" # mypy plugin for python-lsp-server
pymongo = "*" # used by mk_mongodb agent plugin
pytest = "*"
pytest-cov = "*" # used (indirectly) by test/Makefile's test-unit-coverage-html target, see comment there
pytest-html = "*" # used to generate HTML reports for test suites
pytest-mock = "*" # used by quite a few unit/integration tests via the mocker fixture
pytest-random-order = "*" # used to test resiliency
pytest-repeat = "*" # used to test resiliency
pytest-testmon = "*" # used for pre-commit checking via .pre-commit-config.yaml
pytest-xdist = "*" # used to limit number of procs in e2e tests
pytest-check = "*" # used to queue failed assertions and continue test execution
python-lsp-black = "*" # black plugin for python-lsp-server
python-lsp-server = "*" # Note: There are extras, but the default seems sensible.
responses = "*" # used for unit tests
ruff = "*"
schemathesis = "*" # used for openapi tests
semver = "*"
sphinx = "*" # used for the plugin API documentation
sphinx-autodoc-typehints = "*" # used for the plugin API documentation
sphinx-rtd-theme = "*" # used for the plugin API documentation
sphinxcontrib-plantuml = "*" # used for the API and architecture
sphinxcontrib-spelling = "*"
telnetlib3 = "*" # used by Windows Agent tests
time-machine = "*" # used by various unit tests. Substitute for freezegun
twine = "*" # used to upload packages to internal PyPi mirror
types-beautifulsoup4 = "*" # used for type checking
types-docutils = "*" # used for type checking
types-jmespath = "*" # used for type checking
types-jsonschema = "*" # used for type checking
types-lxml = "*" # used for type checking
types-mypy-extensions = "*" # used for type checking
types-oauthlib = "*" # used for type checking
types-paho-mqtt = "*" # used for type checking
types-paramiko = "*" # used for type checking
types-pillow = "*" # used for type checking
types-protobuf = "*" # used for type checking
types-psutil = "*" # used for type checking
types-pyasn1 = "*" # used for type checking
types-pymssql = "*" # used for type checking
types-pymysql = "*" # used for type checking
types-pyopenssl = "*" # used for type checking
types-pysaml2 = "*" # used for type checking
types-python-dateutil = "*" # used for type checking
types-pyyaml = "*" # used for type checking
types-redis = "*" # used for type checking
types-requests = "*" # used for type checking
types-s3transfer = "*" # used for type checking
types-setuptools = "*" # used for type checking
types-simplejson = "*" # used for type checking
types-six = "*" # used for type checking
types-urllib3 = "*" # used for type checking
types-xmltodict = "*" # used by xmltodict
uvicorn = "*"
webtest = "*" # used by WSGI based tests
[packages]
setuptools-scm = "==4.1.2" # needed by various setup.py
six = "==1.16.0" # direct dependency + needed by python-dateutil, vcrpy, python-active-directory
python-dateutil = "~=2.9.0" # direct dependency
pyyaml = "==6.0.1" # needed by vcrpy
wrapt = "==1.15.0" # needed by vcrpy
yarl = "==1.9.4" # needed by vcrpy
multidict = "==6.0.4" # needed by yarl
vcrpy = "==6.0.1" # used by various unit tests to mock HTTP transactions in some special agents (only)
cryptography = "*"
bcrypt = "*"
paramiko = "*"
pyasn1 = "==0.4.8" # needed by pysnmp
pyasn1-modules = "==0.2.8" # needed by kubernetes
ply = "==3.11" # needed by pysmi, python-active-directory
pysmi-lextudio = "==1.4.3" # needed by pysnmp
pysnmp-lextudio = "==6.1.2" # needed by Event Console
snmpsim-lextudio = "==1.1.0" # needed by pysnmp integration tests
urllib3 = "*" # needed by requests
pyopenssl = "*"
pbr = "==5.11.1" # needed by jira
pyghmi = "==1.5.60" # needed by base for IPMI
requests = "<2.32" # pinned due to docker-py, see https://github.com/docker/docker-py/issues/3256
requests-kerberos = "==0.14.0" # needed by check_bi_aggr
markupsafe = "==2.1.2" # needed by jinja2
itsdangerous = "==2.1.2" # needed by flask
jinja2 = "==3.1.3" # needed by flask
more-itertools = "==10.2.0" # needed by connexion through zipp, pytest
zipp = "==3.18.1" # needed by importlib-metadata
pyrsistent = "==0.19.3" # needed by jsonschema
werkzeug = "==3.0.2" # direct dependency and needed by flask
flask = "==3.0.3" # direct dependency
openapi-spec-validator = "==0.7.1" # direct dependency
psutil = "==5.9.8" # needed for omdlib
oauthlib = "==3.2.2"
requests-oauthlib = "==1.3.1"
jira = "==3.6.0" # needed by jira
msal = "==1.26.0" # needed by agent_azure
pillow = "~=10.0" # TODO(kb): unpin (temporary pinned)
python-ldap = "==3.4.3" # needed by GUI (User sync), python-active-directory
dicttoxml = "==1.7.16" # needed by GUI (API XML format)
cython = "==0.29.34" # needed by numpy, change also in omd/packages/python3-modules/build-python3-modules.bzl
numpy = "==1.26.4" # needed by GUI (metrics)
reportlab = "==4.1.0" # needed by GUI (reporting)
pypdf = "==4.2.0" # needed by GUI (reporting)
roman = "==4.0" # needed by GUI (reporting)
google-auth = "*" # needed by kubernetes
websocket-client = "==1.5.1" # needed by kubernetes
kubernetes = "==21.7.0" # needed by kubernetes
jmespath = "==1.0.1" # needed by boto3 (aws)
botocore = "==1.34.15" # needed by boto3 (aws), keep version in sync with botocore-stubs
s3transfer = "==0.10.0" # needed by boto3 (aws)
boto3 = "==1.34.15" # needed by boto3 (aws), keep version in sync with boto3-stubs
python-snap7 = "==1.3" # needed by Siemens PLC special agent
pymssql = "==2.2.11" # needed by check_sql active check
pymysql = "~=1.1.1" # needed by check_sql active check
psycopg2-binary = "==2.9.6" # needed by check_sql active check
apispec = "==6.4.0" # direct dependency
marshmallow = "==3.21.1" # direct dependency
marshmallow-oneofschema = "==3.1.1" # direct dependency
apispec-oneofschema = "==3.0.0" # direct dependency
pydantic = "~=2.7"
pydantic_core = "~=2.18" # used by pydantic and by us
annotated-types = "~=0.7" # provides validators for pydantic2
paho-mqtt = "==1.6.1" # needed for MQTT special agent
python-active-directory = "==2.0.1"
rrdtool = "==0.1.16" # Actually we ship the binding which comes with rrdtool itself...
docstring-parser = "==0.16" # direct dependency
pyprof2calltree = "==1.4.5" # used for GUI/API profiling
pyparsing = "==3.1.2" # direct dependency
redis = "==4.5.4" # needed by GUI (caching)
fido2 = "*" # used for GUI 2fa webauthn
tenacity = "==8.2.3" # needed by opsgenie-sdk
opsgenie-sdk = "==2.1.5" # needed by opsgenie_issues
protobuf = "*" # For development, Runtime modules are shipped by omd/packages/protobuf
cmk-agent-based = {editable = true, path = "./packages/cmk-agent-based"}
cmk-agent-receiver = {editable = true, path = "./packages/cmk-agent-receiver"}
cmk-graphing = {editable = true, path = "./packages/cmk-graphing"}
cmk-mkp-tool = {editable = true, path = "./packages/cmk-mkp-tool"}
cmk-rulesets = {editable = true, path = "./packages/cmk-rulesets"}
cmk-server-side-calls = {editable = true, path = "./packages/cmk-server-side-calls"}
cmk-werks = {editable = true, path = "./packages/cmk-werks"}
cmk-livestatus-client = {editable = true, path = "./packages/cmk-livestatus-client"}
pysmb = "==1.2.9.1" # used by SMB share special agent
google-cloud-monitoring = "*" # used by the gcp special agent
google-cloud-asset = "*" # used by the gcp special agent
exchangelib = "==5.4.0" # used by active checks for mail
lxml = "==4.9.3" # used via beautifulsoup4 as a parser and in the agent_netapp special agent
grpcio = "*"
google-api-python-client = "*" # use rest api to query big query for gcp cost monitoring
setproctitle = "==1.3.3" # used by mkbench/dcd/liveproxyd
meraki = "==1.41.0" # used by special agent Cisco Meraki
feedparser = "*" # used by special agent Microsoft Azure Status
pysaml2 = "~=7.4" # used by SSO via SAML2.0
azure-storage-blob = "==12.15.0" # used for backups to Azure Blob Storage
azure-identity = "==1.12.0" # used for backups to Azure Blob Storage
pyjwt = {version = "*", extras = ["crypto"]} # used for SSO via OAUTH2
GitPython = "~=3.1" # used for werk collecting
icalendar = "==5.0.7" # used for importing .ical files
recurring_ical_events = "==2.0.2" # used for parsing recurring events in icalendar objects
typing-extensions = "*"
netapp-ontap = "==9.14.1.0" # used by netapp special agent
redfish = "~= 3.2.2" # used for management board monitoring via Redfish, used by optional MKP
robotframework = "~=7.0" # used for parsing robotmk agent data
[requires]
python_version = "3.12"