python-compute/pyproject.toml

31 lines
652 B
TOML
Raw Normal View History

2023-06-17 20:07:50 +03:00
[tool.poetry]
2023-09-23 21:24:56 +03:00
name = "computelib"
2023-06-17 20:07:50 +03:00
version = "0.1.0"
2023-09-23 21:24:56 +03:00
description = "Compute Node Agent library"
2023-06-17 20:07:50 +03:00
authors = ["ge <ge@nixhacks.net>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
2023-09-23 21:24:56 +03:00
libvirt-python = "9.0.0"
lxml = "^4.9.2"
docopt = "^0.6.2"
2023-07-22 23:59:49 +03:00
[tool.poetry.scripts]
2023-09-23 21:24:56 +03:00
na-vmctl = "computelib.cli.vmctl:cli"
na-vmexec = "computelib.cli.vmexec:cli"
2023-06-17 20:07:50 +03:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-08-24 22:36:12 +03:00
[tool.pylint."MESSAGES CONTROL"]
disable = [
"invalid-name",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"import-error",
"too-many-arguments",
]