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

34 lines
983 B
TOML
Raw Normal View History

2023-04-23 18:39:03 +00:00
[tool.poetry]
name = "amdgpu-stats"
2023-09-04 03:48:20 +00:00
version = "0.1.22"
description = "A module/TUI for AMD GPU statistics"
2023-04-23 21:10:29 +00:00
authors = ["Josh Lay <pypi@jlay.io>"]
2023-08-30 03:01:24 +00:00
repository = "https://git.init3.us/BraveTraveler/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-05-12 02:24:40 +00:00
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",
2023-05-12 02:24:40 +00:00
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
2023-04-23 18:39:03 +00:00
[tool.poetry.dependencies]
2023-06-03 07:00:17 +00:00
python = "^3.8"
2023-08-06 03:58:19 +00:00
textual = ">=0.32.0"
2023-04-23 18:39:03 +00:00
humanfriendly = ">=10.0"
[tool.poetry.scripts]
2023-05-05 22:43:21 +00:00
amdgpu-stats = "amdgpu_stats:textual_run"
2023-04-23 18:39:03 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"