forked from nicolargo/nvidia-ml-py3
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
33 lines (30 loc) · 1.2 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
33
from distutils.core import setup
from sys import version
# earlier versions don't support all classifiers
if version < '2.2.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
_package_name='nvidia-ml-py3'
setup(name=_package_name,
version='7.352.1',
description='Python Bindings for the NVIDIA Management Library',
py_modules=['pynvml', 'nvidia_smi'],
package_data={_package_name: ['Example.txt']},
license="BSD",
url="http://www.nvidia.com/",
author="NVIDIA Corporation",
author_email="nvml-bindings@nvidia.com",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware',
'Topic :: System :: Systems Administration',
],
)