[DEV] add monk file

This commit is contained in:
Edouard DUPIN 2016-03-23 22:33:46 +01:00
parent f43a5a7341
commit c50347cd40

19
monk_gale.py Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/python
import monkModule
import monkTools as tools
import os
def get_desc():
return "graphyc Abstraction layer for EWOL"
def create():
# module name is 'ewol' and type binary.
myModule = monkModule.Module(__file__, 'gale', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://atria-soft.github.io/gale/")
myModule.set_website_sources("http://github.com/atria-soft/gale/")
myModule.set_path(os.path.join(tools.get_current_path(__file__), "gale"))
myModule.set_path_general_doc(os.path.join(tools.get_current_path(__file__), "doc"))
# add the currrent module at the
return myModule