Archived
1
1
Fork 0
This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
amdgpu_stats/pyproject.toml

22 lines
574 B
TOML
Raw Normal View History

2023-04-23 18:39:03 +00:00
[tool.poetry]
name = "amdgpu-stats"
2023-04-26 05:00:56 +00:00
version = "0.1.8"
2023-04-26 02:20:56 +00:00
description = "A simple module/TUI (using Textual) that provides AMD GPU statistics"
2023-04-23 21:10:29 +00:00
authors = ["Josh Lay <pypi@jlay.io>"]
2023-04-23 21:42:34 +00:00
repository = "https://github.com/joshlay/amdgpu_stats"
2023-04-23 18:39:03 +00:00
license = "MIT"
readme = "README.md"
2023-04-26 05:00:56 +00:00
documentation = "https://amdgpu-stats.readthedocs.io/en/latest/"
2023-04-23 18:39:03 +00:00
[tool.poetry.dependencies]
python = "^3.9"
textual = ">=0.10"
humanfriendly = ">=10.0"
[tool.poetry.scripts]
2023-04-25 02:41:50 +00:00
amdgpu-stats = "amdgpu_stats.interface:tui"
2023-04-23 18:39:03 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"