Add atlas refine cue seed workflow

This commit is contained in:
2026-07-01 14:10:23 +02:00
parent 83dfecc55b
commit 5f602db06b
34 changed files with 12162 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python3
from __future__ import annotations
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) in sys.path:
sys.path.remove(str(ROOT))
sys.path.insert(0, str(ROOT))
from krea2_atlas_refine_manifest import main # noqa: E402
if __name__ == "__main__":
raise SystemExit(main(sys.argv[1:]))