initial commit

This commit is contained in:
2020-11-02 19:02:52 +08:00
parent 8da6988631
commit bad57ff8f5
4 changed files with 322 additions and 0 deletions

16
setup.py Normal file
View File

@@ -0,0 +1,16 @@
from setuptools import setup, find_packages
setup(
name = 'gpuutil',
version = '0.0.1',
keywords='gpu utils',
description = 'A tool for observing gpu stat and auto set visible gpu in python code.',
license = 'MIT License',
url = '',
author = 'zmy',
author_email = 'izmy@qq.com',
packages = find_packages(),
include_package_data = True,
platforms = 'any',
install_requires = [],
)