etk/monk_etk.py

20 lines
569 B
Python
Raw Normal View History

2013-12-22 19:02:55 +01:00
#!/usr/bin/python
import monkModule as module
import monkTools as tools
2013-12-23 22:38:46 +01:00
def get_desc():
return "e-tk : Ewol tool kit"
2013-12-22 19:02:55 +01:00
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/")
2013-12-28 16:07:50 +01:00
myModule.set_website_sources("http://github.com/heeroyui/etk/")
2013-12-22 19:02:55 +01:00
myModule.set_path(tools.get_current_path(__file__) + "/etk/")
2013-12-28 15:38:23 +01:00
myModule.set_path_general_doc(tools.get_current_path(__file__) + "/doc/")
2013-12-22 19:02:55 +01:00
# add the currrent module at the
return myModule