2025-10-26 14:35:03 +01:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
from re import compile as re_compile
from rougail . tiramisu import func , dict_env , load_functions , ConvertDynOptionDescription
load_functions ( ' ../rougail-tests/funcs/test.py ' )
try :
groups . namespace
except :
groups . addgroup ( ' namespace ' )
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
option_2 = IntOption ( name = " var " , doc = " the first variable " , multi = True , properties = frozenset ( { " basic " , " mandatory " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/01_6integer_multi_mandatory/rougail/00-base.yml ' ] , ' type ' : ' integer ' } )
2025-12-29 11:13:17 +01:00
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_2 ] , properties = frozenset ( { " basic " } ) )
2025-10-26 14:35:03 +01:00
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )