From f617888bb4cfceb3bc869b926c579966673e7b8a Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Mon, 4 Feb 2013 01:14:57 +0300 Subject: [PATCH] Fix easy_install'ation on Windows There is no 'wmi' package on PyPI. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c767a33264..10fea483db 100755 --- a/setup.py +++ b/setup.py @@ -215,7 +215,7 @@ if sys.platform.startswith('win'): '_winreg', 'wmi', ]) - setup_kwargs['install_requires'].append('wmi') + setup_kwargs['install_requires'].append('WMI') elif sys.platform.startswith('linux'): freezer_includes.extend([ 'yum',