etk/monk_etk.py

20 lines
569 B
Python

#!/usr/bin/python
import monkModule as module
import monkTools as tools
def get_desc():
return "e-tk : Ewol tool kit"
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'etk', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/etk/")
myModule.set_website_sources("http://github.com/heeroyui/etk/")
myModule.set_path(tools.get_current_path(__file__) + "/etk/")
myModule.set_path_general_doc(tools.get_current_path(__file__) + "/doc/")
# add the currrent module at the
return myModule