Change sys path

This commit is contained in:
CPD 2025-03-10 14:07:05 +01:00
parent 20ae68347c
commit 28dab8512c

View File

@ -2,11 +2,13 @@ import sys
if __name__ == "__main__": if __name__ == "__main__":
if __package__ is None: if __package__ is None:
# make relative imports work as described here: https://peps.python.org/pep-0366/#proposed-change # make relative imports work as described here: https://peps.python.org/pep-0366/#proposed-change
__package__ = "cpdctrl" __package__ = "cpdctrl_gui"
from os import path from os import path
filepath = path.realpath(path.abspath(__file__)) filepath = path.realpath(path.abspath(__file__))
pdir = path.dirname(path.dirname(filepath)) # Make sure both projects are loaded from the source tree instead of installed packages
sys.path.insert(0, pdir) # parent dir of both projects
pdir = path.dirname(path.dirname(path.dirname(filepath)))
sys.path.insert(0, path.join(pdir, "cpdctrl-gui"))
sys.path.insert(0, path.join(pdir, "cpdctrl")) sys.path.insert(0, path.join(pdir, "cpdctrl"))
print(sys.path) print(sys.path)
from cpdctrl_gui import init from cpdctrl_gui import init