Make pandas an optional install

This commit is contained in:
Ryan Castner
2017-09-01 13:20:54 -04:00
parent 69edb9def3
commit b09fface1b
+3 -1
View File
@@ -48,7 +48,6 @@ install = [
'xlrd',
'xlwt',
'pyyaml',
'pandas'
]
@@ -81,4 +80,7 @@ setup(
],
tests_require=['pytest'],
install_requires=install,
extras_require={
'pandas': ['pandas'],
},
)