6064f160a3
- Add generator for python wrapper - Add interface, exception and init files - Add CMake custom targets Change-Id: I63c1d94fbb587387c22f559a3db79987eb214a2e Signed-off-by: Dejan Andjelkovic <Dejan.Andjelkovic@amd.com>
17 baris
438 B
Python
17 baris
438 B
Python
from setuptools import setup
|
|
|
|
with open("amdsmi/README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='amdsmi',
|
|
version='0.1',
|
|
description="SMI LIB - AMD GPU Monitoring Library",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=['amdsmi'],
|
|
package_data={'': ['LICENSE']},
|
|
include_package_data=True,
|
|
python_requires=">=3.6",
|
|
)
|