10 lines
380 B
Python
10 lines
380 B
Python
#!/usr/bin/env python3
|
|
"""Build this reviewed card through the shared deterministic assembler."""
|
|
from pathlib import Path
|
|
import sys
|
|
ROOT=Path(__file__).resolve().parent
|
|
REPO=next(p for p in ROOT.parents if (p/'docs/card-layer-pipeline.md').is_file())
|
|
sys.path.insert(0,str(REPO/'tools/card-production'))
|
|
from assemble_card import assemble
|
|
if __name__=='__main__':assemble(ROOT)
|