python-compute/pyproject.toml
2023-08-24 22:36:12 +03:00

34 lines
716 B
TOML

[tool.poetry]
name = "node-agent"
version = "0.1.0"
description = "Node Agent"
authors = ["ge <ge@nixhacks.net>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
libvirt-python = "9.0.0" # 9.0.0 on Debian 12
lxml = "^4.9.2" # 4.9.2 on Debian 12
docopt = "^0.6.2" # 0.6.2 on Debian 12
[tool.poetry.scripts]
na-vmctl = "node_agent.cli.vmctl:cli"
na-vmexec = "node_agent.cli.vmexec:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.yapf]
[tool.pylint."MESSAGES CONTROL"]
disable = [
"invalid-name",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"import-error",
"too-many-arguments",
]