From bb320ac2e7a451dd36c9963645f0a52b7b81663a Mon Sep 17 00:00:00 2001 From: zmy Date: Mon, 2 Nov 2020 19:41:44 +0800 Subject: [PATCH] restrict platform to Linux only since it use ps command --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5fbb588..3a7ba2d 100644 --- a/setup.py +++ b/setup.py @@ -6,11 +6,11 @@ setup( keywords='gpu utils', description = 'A tool for observing gpu stat and auto set visible gpu in python code.', license = 'MIT License', - url = '', + url = 'https://git.zmy.pub/zmyme/gpuutil', author = 'zmy', author_email = 'izmy@qq.com', packages = find_packages(), include_package_data = True, - platforms = 'any', + platforms = 'Linux', install_requires = [], )