Move package into src layout

This commit is contained in:
2026-06-02 21:02:56 -04:00
parent f38030238c
commit 226fecbe71
11 changed files with 13 additions and 0 deletions

View File

@@ -1,6 +1,13 @@
#!/usr/bin/env python3
"""Saiki CLI entrypoint."""
import sys
from pathlib import Path
SRC_DIR = Path(__file__).resolve().parent / "src"
if str(SRC_DIR) not in sys.path:
sys.path.insert(0, str(SRC_DIR))
from saiki.cli import main