[SWDEV-482058 / SWDEV-482971] Added setup.py install
Signed-off-by: Justin Williams <Justin.Williams@amd.com> Change-Id: Ibad07d34dfb455043ce307fe036289f1d5c20a9a
This commit is contained in:
committed by
Maisam Arif
parent
25bcf6af2a
commit
2e5b164c43
@@ -0,0 +1,25 @@
|
||||
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(),
|
||||
install_requires=[
|
||||
"PyYAML>=3.0",
|
||||
],
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
],
|
||||
python_requires=">=3.6",
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
'': ['*.so'],
|
||||
},
|
||||
zip_safe=False,
|
||||
license='amdsmi/LICENSE',
|
||||
)
|
||||
Reference in New Issue
Block a user