From 3b6ce59049d2427d691673df4ecba68305d3a559 Mon Sep 17 00:00:00 2001 From: Claudio Jolowicz Date: Sat, 22 Aug 2020 13:36:38 +0200 Subject: [PATCH] Add pyproject.toml --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2c30e60 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "bpytop" +version = "1.0.16" +description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." +authors = ["Aristocratos "] +license = "Apache-2.0" + +[tool.poetry.dependencies] +python = "^3.6" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api"