latex-packages/build.py

9 lines
193 B
Python
Raw Normal View History

2021-10-18 15:55:52 +02:00
from build_scripts.build import build
from pathlib import Path
2021-10-08 09:17:56 +02:00
2021-10-06 23:10:06 +02:00
if __name__ == "__main__":
2021-10-18 15:55:52 +02:00
build(
src_dir=Path('./src').resolve(),
build_dir=Path('./build').resolve()
)