8 lines
243 B
Python
8 lines
243 B
Python
"""Make studylib importable without installation (the template is not
|
|
pip-installed; real studies use ``pip install -e ".[dev]"`` instead)."""
|
|
|
|
import pathlib
|
|
import sys
|
|
|
|
sys.path.insert(0, str(pathlib.Path(__file__).resolve().parent.parent))
|