Initial commit from pymetrius template

This commit is contained in:
Michael Panchenko
2025-03-23 23:33:19 +01:00
commit e93169bc8d
40 changed files with 4241 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import os
from pathlib import Path
# This script provides a platform-independent way of making the jupyter-book call (used in pyproject.toml)
toc_file = Path(__file__).parent / "_toc.yml"
cmd = f"jupyter-book toc from-project docs -e .rst -e .md -e .ipynb >{toc_file}"
print(cmd)
os.system(cmd)