The documentation generation function of build.py includes a bunch of utility libraries on the utils/python subpath, but as these are outside the python include path, they fail to resolve and halt the script.
These all need to be moved to either:
Dynamic includes via importlib with the paths corrected
An updated system path at runtime to match the inner script root
The documentation generation function of
build.py
includes a bunch of utility libraries on theutils/python
subpath, but as these are outside the python include path, they fail to resolve and halt the script.These all need to be moved to either:
importlib
with the paths corrected