dune_python_install_packageΒΆ

dune_python_install_package(
     PATH path
    [ADDITIONAL_PIP_PARAMS param1 [param2 ...]]
)
PATH
Relative path to the given python package source code.
ADDITIONAL_PIP_PARAMS
Parameters to add to any pip install call (appended).

This function installs the python package located at the given path. It

  • installs it to the location specified with DUNE_PYTHON_INSTALL_LOCATION during make install_python and during make install.
  • installs a wheel into the Dune wheelhouse during make install. This is necessary for mixing installed and non-installed Dune modules.

The package at the given location is expected to be a pip-installable package.