-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 939 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 939 Bytes
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
[tool.poetry]
name = "fedcloud-monitoring-tools"
version = "0.3.0"
description = "Monitoring fedcloud VMs and sites"
authors = ["Giuseppe La Rocca <giuseppe.larocca@egi.eu>",
"Sebastián Luna-Valero <sebastian.luna.valero@egi.eu>",
"Enol Fernández <enol.fernandez@egi.eu>"]
readme = "README.md"
include = [
{ path = "fedcloud_monitoring_tools/data", format = ["sdist", "wheel"] }
]
[tool.poetry.scripts]
fedcloud-vm-monitor = "fedcloud_monitoring_tools.vm_monitor_cli:main"
fedcloud-sla-monitor = "fedcloud_monitoring_tools.sla_monitor_cli:main"
fedcloud-vo-testing = "fedcloud_monitoring_tools.vo_test_cli:main"
[tool.poetry.dependencies]
python = "^3.12"
fedcloudclient = "^1.4.4"
ldap3 = "^2.9.1"
python-dateutil = "^2.9.0.post0"
paramiko = "^3.4.0"
IM-client = "^1.8.1"
httpx = "^0.27.2"
xmltodict = "^0.14.2"
fabric = "^3.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"