mirror of
https://github.com/blackboxprogramming/quantum-math-lab.git
synced 2026-03-17 04:57:11 -05:00
7 lines
169 B
Python
7 lines
169 B
Python
import pathlib
|
|
import sys
|
|
|
|
PROJECT_ROOT = pathlib.Path(__file__).resolve().parent.parent
|
|
if str(PROJECT_ROOT) not in sys.path:
|
|
sys.path.insert(0, str(PROJECT_ROOT))
|