Use environment markers for platform-specific modules

This patch replaces a removed feature of pbr with PEP 426's environment markers.
Environment markers are a way to do conditional includes in requirements.txt.

Change-Id: Iaef089a32f71d826ff3db41d2832c84213169172
This commit is contained in:
Claudiu Popa 2015-04-27 16:08:18 +03:00
parent 50365affc1
commit 3c7fcef51b
2 changed files with 5 additions and 6 deletions

View File

@ -1,4 +0,0 @@
pywin32
comtypes
wmi
tzlocal

View File

@ -10,5 +10,8 @@ Babel>=1.3
oauthlib
netifaces
PyYAML
tzlocal
requests
requests
pywin32;sys_platform=="win32"
comtypes;sys_platform=="win32"
wmi;sys_platform=="win32"
tzlocal;sys_platform=="win32"