-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import setuptools
with open('README.rst') as fp:
long_description = fp.read()
setuptools.setup(
name='amdgpu-pptable',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
python_requires='>=3.6',
use_scm_version={'write_to': 'src/amdgpu_pptable/version.py'},
description='AMDGPU PowerPlay table parser',
long_description=long_description,
url='https://github.com/amezin/amdgpu-pptable',
keywords='amdgpu radeon powerplay',
author='Aleksandr Mezin',
author_email='mezin.alexander@gmail.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware'
]
)