2022-08-08 08:44:19 +02:00
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
unittest2 ; python_version < '2.7'
|
|
|
|
importlib ; python_version < '2.7'
|
|
|
|
|
2020-06-14 16:34:09 +02:00
|
|
|
# requirement for the memcached cache plugin
|
|
|
|
python-memcached
|
|
|
|
|
|
|
|
# requirement for the redis cache plugin
|
|
|
|
redis
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
# requirement for the linode module
|
2020-06-14 16:34:09 +02:00
|
|
|
linode-python # APIv3
|
|
|
|
linode_api4 ; python_version > '2.6' # APIv4
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2021-03-06 13:30:43 +01:00
|
|
|
# requirement for the gitlab and github modules
|
2021-01-24 21:02:44 +01:00
|
|
|
python-gitlab
|
2021-03-06 13:30:43 +01:00
|
|
|
PyGithub
|
2020-03-09 10:11:07 +01:00
|
|
|
httmock
|
|
|
|
|
2020-05-09 11:03:33 +02:00
|
|
|
# requirement for maven_artifact module
|
2021-09-25 08:43:16 +02:00
|
|
|
lxml < 4.3.0 ; python_version < '2.7' # lxml 4.3.0 and later require python 2.7 or later
|
|
|
|
lxml ; python_version >= '2.7'
|
2020-05-09 11:03:33 +02:00
|
|
|
semantic_version
|
2020-12-15 19:50:42 +01:00
|
|
|
|
|
|
|
# requirement for datadog_downtime module
|
2021-08-04 08:36:45 +02:00
|
|
|
datadog-api-client >= 1.0.0b3 ; python_version >= '3.6'
|
|
|
|
|
|
|
|
# requirement for dnsimple module
|
|
|
|
dnsimple >= 2 ; python_version >= '3.6'
|
|
|
|
dataclasses ; python_version == '3.6'
|
2021-09-14 21:05:02 +02:00
|
|
|
|
|
|
|
# requirement for the opentelemetry callback plugin
|
2022-06-21 21:39:00 +02:00
|
|
|
# WARNING: these libraries rely on Protobuf for Python, which regularly stops installing.
|
|
|
|
# That's why they are disabled for now.
|
|
|
|
# opentelemetry-api ; python_version >= '3.6' and python_version < '3.10'
|
|
|
|
# opentelemetry-exporter-otlp ; python_version >= '3.6' and python_version < '3.10'
|
|
|
|
# opentelemetry-sdk ; python_version >= '3.6' and python_version < '3.10'
|
2021-10-11 06:54:14 +02:00
|
|
|
|
|
|
|
# requirement for the elastic callback plugin
|
|
|
|
elastic-apm ; python_version >= '3.6'
|
2022-11-02 20:11:04 +01:00
|
|
|
|
|
|
|
# requirements for scaleway modules
|
2023-07-02 21:48:26 +02:00
|
|
|
passlib[argon2]
|
|
|
|
|
|
|
|
# requirements for the proxmox modules
|
|
|
|
proxmoxer < 2.0.0 ; python_version >= '2.7' and python_version <= '3.6'
|
|
|
|
proxmoxer ; python_version > '3.6'
|