diff options
author | terminaldweller <thabogre@gmail.com> | 2023-02-14 10:38:11 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2023-02-14 10:38:11 +0000 |
commit | e71aa0e8c9392c1b4118986172f9e6552bb01c5c (patch) | |
tree | bb8b75cd4e80e300a02e5e1e56faaaf1edf3a35c /pyproject.toml | |
parent | Initial commit (diff) | |
download | virttop-e71aa0e8c9392c1b4118986172f9e6552bb01c5c.tar.gz virttop-e71aa0e8c9392c1b4118986172f9e6552bb01c5c.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | pyproject.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2e184b9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[tool.poetry] +name = "virttop" +version = "0.1.0" +description = "A top like utility for libvirt" +authors = ["terminaldwelelr <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] +tunneltop = "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" |