Problem description
We have a python c++ project and there are other commands that need to be run before running python -m pip install -e . , setting environment variables(CMAKE_ARGS) , preparing necessary data etc.
For this purpose we have created an install.py which works cross platform. It would awesome if a custom command could be specified for the pyproject.toml editable dependency that has been implemented in #1084
example
[pypi-dependencies]
minimal-project = { path = ".", editable = true, build_cmd=["python install.py develop"]}
Problem description
We have a python c++ project and there are other commands that need to be run before running
python -m pip install -e ., setting environment variables(CMAKE_ARGS) , preparing necessary data etc.For this purpose we have created an
install.pywhich works cross platform. It would awesome if a custom command could be specified for the pyproject.toml editable dependency that has been implemented in #1084example