-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8226df4
commit 87bc374
Showing
1 changed file
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
) |