[DEV] add monk doc generator

This commit is contained in:
Edouard DUPIN 2013-12-23 22:52:33 +01:00
parent 29f0656dfa
commit 2fc47723f0

21
sources/monk_edn.py Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/python
import monkModule as module
import monkTools as tools
import monkDebug as debug
import datetime
def get_desc():
return "EDN application N'ours editor (Editeur De N'ours)"
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'edn', 'APPLICATION')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/edn/")
myModule.set_path(tools.get_current_path(__file__) + "/appl/")
# add the currrent module at the
return myModule