Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
notebook>=4.0.0
pandas>=0.16.2
ipywidgets>=4.0.0
jupyter-pip>=0.3.0
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
join, dirname, abspath
)

#jchuahtacc
try:
from jupyterpip import cmdclass
except:
import pip, importlib
pip.main(['install', 'jupyter-pip']); cmdclass = importlib.import_module('jupyterpip').cmdclass

def read_requirements(basename):
reqs_file = join(dirname(abspath(__file__)), basename)
Expand Down Expand Up @@ -50,5 +56,6 @@ def read_requirements(basename):
'Topic :: Scientific/Engineering :: Information Analysis',
],
install_requires=reqs,
url="https://github.com/quantopian/qgrid"
url="https://github.com/quantopian/qgrid",
cmdclass=cmdclass('qgrid/qgridjs'),
)