# ============================================================================= # Author: Simon-Pierre Boucher # Contact: contact@spboucher.ai # ============================================================================= """Make the ``wp7`` package importable when the repo is not pip-installed. Every numbered script starts with ``import _bootstrap # noqa: F401`` so it can be launched directly (``python scripts/02_rq1_return_predictability.py``) without any environment setup. """ import sys from pathlib import Path _SRC = Path(__file__).resolve().parents[1] / "src" if str(_SRC) not in sys.path: sys.path.insert(0, str(_SRC))