From 7196455b13aeca2767fe33e20a435bdb9d94bbab Mon Sep 17 00:00:00 2001 From: Daniel Mizyrycki Date: Sat, 2 Feb 2019 00:09:05 -0500 Subject: [PATCH] Address #60: Add pyreadline dependency for Windows platform --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 5cbb512..1652e55 100644 --- a/setup.py +++ b/setup.py @@ -48,4 +48,8 @@ setup( 'rshell=rshell.command_line:main' ], }, + extras_require={ + ':sys_platform == "win32"': [ + 'pyreadline'] + } )