Feat: activate all mapytex
This commit is contained in:
parent
4db2b1ce73
commit
7782330ed2
@ -11,7 +11,8 @@ import logging
|
||||
|
||||
from pathlib import Path
|
||||
import pytex
|
||||
from mapytex import Expression, Integer, Decimal
|
||||
#from mapytex import Expression, Integer, Decimal, random_list
|
||||
import mapytex
|
||||
import bopytex.filters as filters
|
||||
|
||||
formatter = logging.Formatter("%(name)s :: %(levelname)s :: %(message)s")
|
||||
@ -24,19 +25,16 @@ logger.addHandler(steam_handler)
|
||||
|
||||
|
||||
def setup():
|
||||
Expression.set_render("tex")
|
||||
logger.debug(f"Render for Expression is {Expression.RENDER}")
|
||||
mapytex.Expression.set_render("tex")
|
||||
logger.debug(f"Render for Expression is {mapytex.Expression.RENDER}")
|
||||
mapytex_tools = {
|
||||
"Expression": Expression,
|
||||
"Integer": Integer,
|
||||
"Decimal": Decimal,
|
||||
# "Polynom": mapytex.Polynom,
|
||||
# "Fraction": mapytex.Fraction,
|
||||
# "Equation": mapytex.Equation,
|
||||
# "random_str": mapytex.random_str,
|
||||
# "random_pythagore": mapytex.random_pythagore,
|
||||
# "Dataset": mapytex.Dataset,
|
||||
# "WeightedDataset": mapytex.WeightedDataset,
|
||||
"Expression": mapytex.Expression,
|
||||
"Integer": mapytex.Integer,
|
||||
"Decimal": mapytex.Decimal,
|
||||
"random_list": mapytex.random_list,
|
||||
"random_pythagore": mapytex.random_pythagore,
|
||||
"Dataset": mapytex.Dataset,
|
||||
"WeightedDataset": mapytex.WeightedDataset,
|
||||
}
|
||||
pytex.update_export_dict(mapytex_tools)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user