summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py4
1 files changed, 3 insertions, 1 deletions
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'],
+ },
)