cnam.marc/render.py
Marc Beninca 5e077bb4ad
Some checks failed
/ job (push) Failing after 3m37s
render
2025-06-20 21:22:09 +02:00

23 lines
449 B
Python
Executable file

#! /usr/bin/env -S python3 -B
import sys
from pathlib import Path
from rwx.prj import Project
from rwx.prj.sphinx import SphinxProject
PROJECTS = [
"blanc",
"probatoire",
"thesis",
]
if __name__ == "__main__":
root = Path(__file__).resolve().parent / "cnam.marc"
# projects
for project in PROJECTS:
Project(root / project / "build.py").render()
# project
sys.exit(SphinxProject(Path(__file__)).build())