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

20 lines
450 B
TOML
Raw Normal View History

2023-04-23 18:39:03 +00:00
[tool.poetry]
name = "amdgpu-stats"
version = "0.1.0"
description = "A simple TUI (using Textual) that shows AMD GPU statistics"
authors = ["Josh Lay <python@jlay.io>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
textual = ">=0.10"
humanfriendly = ">=10.0"
[tool.poetry.scripts]
amdgpu-stats = "amdgpu_stats.amdgpu_stats:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"