11 lines
191 B
Python
Executable file
11 lines
191 B
Python
Executable file
#! /usr/bin/env -S python3 -B
|
|
|
|
import sys
|
|
|
|
from pathlib import Path
|
|
|
|
from rwx.prj.sphinx import SphinxProject
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(SphinxProject(Path(__file__)).build())
|