ewol/sources/monk_ewol.py

17 lines
496 B
Python
Raw Normal View History

2013-12-22 19:05:43 +01:00
#!/usr/bin/python
import monkModule
import monkTools as tools
def create():
# module name is 'edn' and type binary.
myModule = monkModule.Module(__file__, 'ewol', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/ewol/")
myModule.set_path(tools.get_current_path(__file__) + "/ewol/")
myModule.set_path_general_doc(tools.get_current_path(__file__) + "/../doc/")
# add the currrent module at the
return myModule
def get_desc():
return "EWOL main node"