6 lines
164 B
Python
6 lines
164 B
Python
|
|
import sys
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
# Make lib/ importable without installing the package.
|
||
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent.parent / "lib"))
|