exml/monk_exml.py

18 lines
507 B
Python
Raw Normal View History

2013-12-22 19:03:35 +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-xml XML parser and generator"
2013-12-22 19:03:35 +01:00
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'exml', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/exml/")
2013-12-28 16:10:01 +01:00
myModule.set_website_sources("http://github.com/heeroyui/exml/")
2013-12-22 19:03:35 +01:00
myModule.set_path(tools.get_current_path(__file__) + "/exml/")
# add the currrent module at the
return myModule