27 lines
600 B
Python
27 lines
600 B
Python
|
#!/usr/bin/env python3
|
||
|
#
|
||
|
# BSD 3-Clause License
|
||
|
#
|
||
|
# This file is part of the Basalt project.
|
||
|
# https://gitlab.com/VladyslavUsenko/basalt.git
|
||
|
#
|
||
|
# Copyright (c) 2019-2021, Vladyslav Usenko and Nikolaus Demmel.
|
||
|
# All rights reserved.
|
||
|
#
|
||
|
|
||
|
# Dependencies:
|
||
|
# pip3 install -U --user py_ubjson matplotlib numpy munch scipy pylatex toml
|
||
|
|
||
|
# also: latexmk and latex
|
||
|
#
|
||
|
# Ubuntu:
|
||
|
# sudo apt install texlive-latex-extra latexmk
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "python")))
|
||
|
|
||
|
import basalt.generate_tables
|
||
|
|
||
|
basalt.generate_tables.main()
|