33 lines
983 B
TOML
33 lines
983 B
TOML
[tool.poetry]
|
|
name = "amdgpu-stats"
|
|
version = "0.1.22"
|
|
description = "A module/TUI for AMD GPU statistics"
|
|
authors = ["Josh Lay <pypi@jlay.io>"]
|
|
repository = "https://git.init3.us/BraveTraveler/amdgpu_stats"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
documentation = "https://amdgpu-stats.readthedocs.io/en/latest/"
|
|
classifiers = [
|
|
"Environment :: Console",
|
|
"Environment :: GPU",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Intended Audience :: System Administrators",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
textual = ">=0.32.0"
|
|
humanfriendly = ">=10.0"
|
|
|
|
[tool.poetry.scripts]
|
|
amdgpu-stats = "amdgpu_stats:textual_run"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|