Skip to content

Commit

Permalink
modify from GPUtil
Browse files Browse the repository at this point in the history
  • Loading branch information
RuikangSun committed Jul 17, 2024
1 parent 8226df4 commit 87bc374
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
from distutils.core import setup
from setuptools import setup, find_packages


setup(
name = 'GPUtil',
packages = ['GPUtil'],
version = '1.4.0',
description = 'GPUtil is a Python module for getting the GPU status from NVIDA GPUs using nvidia-smi.',
author = 'Anders Krogh Mortensen',
author_email = '[email protected]',
url = 'https://github.com/anderskm/gputil',
download_url = 'https://github.com/anderskm/gputil/tarball/v1.4.0',
keywords = ['gpu','utilization','load','memory','available','usage','free','select','nvidia'],
name='GPUstatus',
version='1.1.0',
packages=find_packages(),
description='GPUstatus is a fork of GPUtil ( https://github.com/anderskm/gputil ) ',
url='https://github.com/RuikangSun/gpustatus',
keywords=['gpu', 'utilization', 'load', 'memory', 'available', 'usage', 'free', 'select', 'nvidia'],
classifiers = [],
license = 'MIT',
)

0 comments on commit 87bc374

Please sign in to comment.