latex-packages/build.py

8 lines
134 B
Python
Raw Normal View History

2021-10-22 09:57:35 +02:00
#! /usr/bin/python3
2021-10-22 14:52:20 +02:00
import sys
2021-10-22 09:57:35 +02:00
2021-10-22 14:52:20 +02:00
from PyTeX.build import parse_and_build
2021-10-22 09:57:35 +02:00
if __name__ == "__main__":
2021-10-22 14:52:20 +02:00
parse_and_build(sys.argv[1:])