Description
I've installed jupyter-server-fileid from PyPI and it created an executable file bin/jupyter-fileid. Unfortunately, the script does not work because click is not installed by default.
Reproduce
- run pip install jupyter-server-fileid
- run bin/jupyter-fileid
Expected behavior
I can imagine two possible solutions:
- Add click to the standard dependencies. I've calculated the size of a virtualenv where I installed only jupyter-server-fileid and all its dependencies and it has 66 MB. Adding click there adds only one more MB which is not that big difference.
- Make it more user-friendly for users. Add
try/except to the script and an error message saying that you should install jupyter-server-fileid[cli] or click directly to make it work.
Description
I've installed jupyter-server-fileid from PyPI and it created an executable file
bin/jupyter-fileid. Unfortunately, the script does not work because click is not installed by default.Reproduce
Expected behavior
I can imagine two possible solutions:
try/exceptto the script and an error message saying that you should install jupyter-server-fileid[cli] or click directly to make it work.