boxespy/boxes/generators/__init__.py

26 lines
430 B
Python

__all__ = [
"box",
"box2",
"box3",
"castle",
"drillbox",
"flexbox",
"flexbox2",
"flexbox3",
"flexbox4",
"flextest",
"folder",
"lamp",
"magazinefile",
"silverwarebox",
"trayinsert",
"traylayout",
"typetray",
]
def getAllBoxGenerators():
import importlib
return {name: importlib.import_module("boxes.generators." + name)
for name in __all__}