robdmc / pandashells

:panda_face: Bringing the python data stack to the shell prompt
Other
788 stars 26 forks source link

Enable custom pip install options #25

Closed robdmc closed 9 years ago

robdmc commented 9 years ago

There was a good suggestion on HN to use the extras_require=[...] in setup.py to enable installing different components of the tool-set. I think a good way to break these down is as follows. I would welcome comments.

Standard Library Only Install

pip install pandashells

pip install pandashells[pandas]

pip install pandashells[graphics]

pip install pandashells[full]

robdmc commented 9 years ago

fixed