2370aa1b40
Signed-off-by: Justin Williams <Justin.Williams@amd.com> Change-Id: Idec32cfb0de84cc255b506d7f972e2750992745e
37 рядки
896 B
Plaintext
37 рядки
896 B
Plaintext
# for details see:
|
|
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=59.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "amdsmi"
|
|
authors = [
|
|
{name = "AMD", email = "amd-smi.support@amd.com"},
|
|
]
|
|
version = "@amd_smi_libraries_VERSION_STRING@"
|
|
license = {file = "amdsmi/LICENSE"}
|
|
readme = {file = "amdsmi/README.md", content-type = "text/markdown"}
|
|
description = "AMDSMI Python LIB - AMD GPU Monitoring Library"
|
|
requires-python = ">=3.6"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3"
|
|
]
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/RadeonOpenCompute/amdsmi"
|
|
|
|
[tool.setuptools]
|
|
packages = ["amdsmi"]
|
|
zip-safe = false
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-data]
|
|
amdsmi = ["*.so"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = "/opt/rocm/share/amd_smi"
|
|
addopts = [
|
|
"--import-mode=importlib",
|
|
]
|