diff --git a/monk_egami.py b/monk_egami.py new file mode 100644 index 0000000..d1e7c3c --- /dev/null +++ b/monk_egami.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +import monkModule as module +import monkTools as tools +import monkDebug as debug +import datetime + +def get_desc(): + return "e-gami library (image generator from multiple image type)" + +def create(): + # module name is 'egami' and type binary. + myModule = module.Module(__file__, 'egami', 'LIBRARY') + # enable doculentation : + myModule.set_website("http://heeroyui.github.io/egami/") + myModule.set_path(tools.get_current_path(__file__) + "/egami/") + + # add the currrent module at the + return myModule + +