Open
Description
The only way to have a working installation of widgetsnbextension
is to use pip
.
The usual python setup.py install
does not work, since that invokes setuptools
(although setup.py
seems to be written at some point with a conditional import of setuptools
) and the setup()
function of setuptools
does not handle data_files
correctly.
Note that it's not a problem for me to use pip
but it's at least unexpected that python setup.py install
does not work. So either this should be fixed or detected such that an error can be raised.