Dosyalar
rocm-systems/py-interface/setup.py.in
T
Justin Williams 2370aa1b40 [SWDEV-469278] Removed PyYAML Dependency
Signed-off-by: Justin Williams <Justin.Williams@amd.com>
Change-Id: Idec32cfb0de84cc255b506d7f972e2750992745e
2024-12-03 15:40:44 -05:00

23 satır
563 B
Plaintext

from setuptools import setup, find_packages
import os
setup(
name="amdsmi",
version="@amd_smi_libraries_VERSION_STRING@",
author="AMD",
author_email="amd-smi.support@amd.com",
description="AMDSMI Python LIB - AMD GPU Monitoring Library",
url="https://github.com/ROCm/amdsmi",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.6",
include_package_data=True,
package_data={
'': ['*.so'],
},
zip_safe=False,
license='amdsmi/LICENSE',
)