Require `requests` on Windows

As the web interface is needed on Windows (as there is no Curses
interface), make sure all of the web requirements are included on
Windows. This includes `bottle` (already listed) and `requests` (now
added).
pull/1347/head
John Kirkham 2018-11-04 04:18:51 -05:00
parent 96a05bec73
commit 460bbed931
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ def get_install_requires():
requires = ['psutil>=5.3.0']
if sys.platform.startswith('win'):
requires.append('bottle')
requires.append('requests')
return requires