Using Poetry for building JupyterLab Prebuilt Extension
#4013
Closed
Description
When I use JupyterLab's cookiecutter to create a new project and I build via setup.py
,
when I'm installing the package, pip install . --upgrade
, the some of the packages files are copied to share/jupyter/labextesions
folder (the desired functionality)
BUT, when I'm using Poetry to build it, it seems like the after-install copy is not happening.
I've read that packages that were built with poetry DO NOT allow for arbitrary code execution after installation.
Is it the reason for the failure? IF NOT, I would like to get an explanation for that.