[DEV] add monk documentation

This commit is contained in:
Edouard DUPIN 2013-12-22 19:02:20 +01:00
parent b8b4ea9a46
commit ac50618272
2 changed files with 15 additions and 5 deletions

View File

@ -4,11 +4,6 @@ import lutinTools
def Create(target):
myModule = lutinModule.module(__file__, 'esvg', 'LIBRARY')
# enable doculentation :
myModule.doc_enable()
myModule.documentation.set_website("http://HeeroYui.github.io/esvg/")
myModule.documentation.set_path(lutinTools.GetCurrentPath(__file__) + "/esvg/")
myModule.documentation.set_external_link(['etk', 'agg', 'exml'])
myModule.AddModuleDepend(['etk', 'agg', 'exml'])

15
monk_esvg.py Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/python
import monkModule as module
import monkTools as tools
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'esvg', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/esvg/")
myModule.set_path(tools.get_current_path(__file__) + "/esvg/")
# add the currrent module at the
return myModule
def get_desc():
return ""