Files
periscope/scripts/smoke_simple_project.py
michele c362ef8a56 Split native Periscope (periscope/src) from inherited PinScope (periscope/dependency).
Keep validate.py and the finding engine as-is. AGPL LICENSE stays at the repo root.
Docker overlays dependency then src. Do not delete the inherited tree.
2026-09-20 14:31:42 +02:00

10 lines
275 B
Python

#!/usr/bin/env python3
"""Wrapper kept at the historic path after the tree split."""
from pathlib import Path
import runpy
runpy.run_path(
str(Path(__file__).resolve().parents[1] / "periscope" / "src" / "scripts" / "smoke_simple_project.py"),
run_name="__main__",
)