Skip to content

Commit

Permalink
Merge pull request #2 from acnazarejr/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
acnazarejr authored Apr 20, 2020
2 parents 69f2996 + c9433b7 commit 4a66b7b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 9 additions & 1 deletion igpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

__author__ = 'Antonio C. Nazare Jr.'
__email__ = 'antonio.nazare@dcc.ufmg.br'
__version__ = '0.1.0'
__version__ = '0.1.1'


from igpu.core import count_devices, count_visible_devices
from igpu.core import devices_index, visible_devices_index
from igpu.core import nvidia_driver_version
from igpu.core import get_device, devices, visible_devices
from igpu.gpu_info import GPUMemoryInfo
from igpu.gpu_info import GPUUtilizationInfo
from igpu.gpu_info import GPUPCIInfo
from igpu.gpu_info import GPUClockInfo
from igpu.gpu_info import GPUPowerInfo
from igpu.gpu_info import GPUProcessInfo
from igpu.gpu_info import GPUProcessesInfo
from igpu.gpu_info import GPUInfo
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup

VERSION = '0.1.0'
VERSION = '0.1.1'
AUTHOR = 'Antonio Carlos Nazare Jr.'
EMAIL = 'antonio.nazare@dcc.ufmg.br'
REQUIREMENTS = [line for line in open('requirements.txt').read().split('\n') if line != '']
Expand All @@ -27,13 +27,15 @@
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
],
description='A cross-platform module for retrieving information and stats on installed gpus.',
long_description=open('readme.md').read(),
long_description_content_type='text/markdown', # This is important!
keywords='gpu cuda nvidia',
packages=['igpu'],
zip_safe=False,
Expand Down

0 comments on commit 4a66b7b

Please # to comment.