restrict platform to Linux only since it use ps command

This commit is contained in:
mingyang 2020-11-02 19:41:44 +08:00
parent 07d331fe48
commit bb320ac2e7

View File

@ -6,11 +6,11 @@ setup(
keywords='gpu utils', keywords='gpu utils',
description = 'A tool for observing gpu stat and auto set visible gpu in python code.', description = 'A tool for observing gpu stat and auto set visible gpu in python code.',
license = 'MIT License', license = 'MIT License',
url = '', url = 'https://git.zmy.pub/zmyme/gpuutil',
author = 'zmy', author = 'zmy',
author_email = 'izmy@qq.com', author_email = 'izmy@qq.com',
packages = find_packages(), packages = find_packages(),
include_package_data = True, include_package_data = True,
platforms = 'any', platforms = 'Linux',
install_requires = [], install_requires = [],
) )