Files

Ignorování revizí v .git-blame-ignorerevs. Klikněte zde pro obejití a zobrazení normálního pohledu blame.

37 řádky
890 B
Plaintext
Surový Trvalý odkaz Normální zobrazení Historie

2023-03-10 13:45:51 -06:00
# for details see:
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
2023-10-30 22:28:23 -05:00
requires = ["setuptools>=59.0"]
2023-03-10 13:45:51 -06:00
build-backend = "setuptools.build_meta"
[project]
name = "amdsmi"
authors = [
{name = "AMD", email = "amd-smi.support@amd.com"},
]
version = "@amd_smi_lib_VERSION_STRING@"
2023-03-10 13:45:51 -06:00
license = {file = "amdsmi/LICENSE"}
readme = {file = "amdsmi/README.md", content-type = "text/markdown"}
2023-07-31 07:42:05 -05:00
description = "AMDSMI Python LIB - AMD GPU Monitoring Library"
2023-10-30 22:28:23 -05:00
requires-python = ">=3.6"
2024-11-12 23:19:44 -06:00
classifiers = [
"Programming Language :: Python :: 3"
]
2023-03-10 13:45:51 -06:00
[project.urls]
"Homepage" = "https://github.com/RadeonOpenCompute/amdsmi"
[tool.setuptools]
packages = ["amdsmi"]
2024-11-12 23:19:44 -06:00
zip-safe = false
include-package-data = true
2023-11-01 18:36:43 -05:00
[tool.setuptools.package-data]
amdsmi = ["*.so"]
2024-05-14 17:03:05 -05:00
[tool.pytest.ini_options]
pythonpath = "/opt/rocm/share/amd_smi"
addopts = [
"--import-mode=importlib",
]