From b09fface1be24bd4025b705f7f8495efb398991d Mon Sep 17 00:00:00 2001 From: Ryan Castner Date: Fri, 1 Sep 2017 13:20:54 -0400 Subject: [PATCH] Make pandas an optional install --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fd9a626..d251352 100755 --- a/setup.py +++ b/setup.py @@ -48,7 +48,6 @@ install = [ 'xlrd', 'xlwt', 'pyyaml', - 'pandas' ] @@ -81,4 +80,7 @@ setup( ], tests_require=['pytest'], install_requires=install, + extras_require={ + 'pandas': ['pandas'], + }, )