File: setup.py.in

package info (click to toggle)
amdsmi 7.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,316 kB
  • sloc: cpp: 41,766; python: 22,219; ansic: 12,789; sh: 754; makefile: 20
file content (22 lines) | stat: -rw-r--r-- 557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os

setup(
    name="amdsmi",
    version="@amd_smi_lib_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',
)