latex-packages/build.py

8 lines
134 B
Python
Raw Permalink Normal View History

2021-10-24 10:35:53 +02:00
#! /usr/bin/python3
import sys
2021-10-08 09:17:56 +02:00
2021-10-24 10:35:53 +02:00
from PyTeX.build import parse_and_build
2021-10-06 23:10:06 +02:00
if __name__ == "__main__":
2021-10-24 10:35:53 +02:00
parse_and_build(sys.argv[1:])