help/build.py

12 lines
191 B
Python
Raw Normal View History

2024-03-03 22:56:09 +01:00
#! /usr/bin/env -S python3 -B
2019-08-25 22:15:03 +02:00
2024-03-25 21:55:36 +01:00
import sys
2024-10-13 22:51:51 +02:00
from pathlib import Path
2024-03-03 21:39:37 +01:00
from rwx.prj.sphinx import SphinxProject
2024-03-03 14:41:25 +01:00
2019-08-25 22:15:03 +02:00
if __name__ == "__main__":
2024-10-13 22:51:51 +02:00
sys.exit(SphinxProject(Path(__file__)).build())