-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.04 KB
/
pyproject.toml
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
32
33
34
35
36
37
38
[tool.poetry]
name = "py3status-amdfan"
version = "0.1.16"
description = "py3status monitor show amdgpu fan speeds and temp"
authors = ["mcgillij <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mcgillij/py3status-amdfan"
repository = "https://github.com/mcgillij/py3status-amdfan"
documentation = "https://github.com/mcgillij/py3status-amdfan"
keywords = ["amdgpu", "monitor", "fan", "i3", "py3status"]
classifiers = [
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Topic :: Desktop Environment :: Window Managers",
"Topic :: System :: Monitoring",
"Topic :: System :: Hardware",
]
[tool.poetry.plugins."py3status"]
module = "py3status_amdfan.fan_monitor"
[tool.poetry.dependencies]
python = "^3.11 || ^3.12 || ^3.13"
py3status = "^3.40"
amdfan = "^0.2.4"
[tool.poetry.group.dev.dependencies]
black = "*"
pylint = "*"
flake8 = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"