aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 73afd964cc08580d879ab62850a36558c3eba940 (plain) (blame)
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 = "virttop"
version = "0.2.2"
description = "A top like utility for libvirt"
authors = ["terminaldweller <devi@terminaldweller.com>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/terminaldweller/virttop"
repository = "https://github.com/terminaldweller/virttop"
keywords = ["libvirt","top"]
classifiers = [
    "Environment :: Console",
]
include = [
    "LICENSE",
]
packages = [
{include = "virttop"}
]

[tool.poetry.scripts]
virttop = "virttop.virttop:main"

[tool.poetry.dependencies]
python = "^3.11"
libvirt-python = "^9.0.0"
defusedxml = "^0.7.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"