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