-
-
Notifications
You must be signed in to change notification settings - Fork 423
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (22 loc) · 641 Bytes
/
pyproject.toml
File metadata and controls
26 lines (22 loc) · 641 Bytes
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
[tool.poetry]
name = "bpytop"
version = "1.0.68"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]
homepage = "https://github.com/aristocratos/bpytop"
license = "Apache-2.0"
include = ["bpytop-themes/*.theme"]
[tool.poetry.dependencies]
python = "^3.7"
psutil = "^5.7.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
mypy = "^0.790"
pylint = "^2.6.0"
more-itertools = "^8.7.0"
[tool.poetry.scripts]
bpytop = "bpytop:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"