Open
Description
I was thinking about "editable" / dev installs today and it struck me, should we support automatically installing the import hook for pip install -e
editable installs?
It would be quite nice if maturin-backed packages installed in editable mode automatically used the import hook. I think it would be possible by putting the hook installation in a .pth
file. Maybe once in maturin
's .pth
, and then the hook can work out what packages have been installed in editable mode / whether to recompile?
That could be an interesting trick to make local development of Rust packages more seamless for those not used to compiling...