esvg/monk_esvg.py

18 lines
513 B
Python
Raw Normal View History

2013-12-22 19:02:20 +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-svg SVG image parser and generator"
2013-12-22 19:02:20 +01:00
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/")
2013-12-28 16:09:46 +01:00
myModule.set_website_sources("http://github.com/heeroyui/esvg/")
2013-12-22 19:02:20 +01:00
myModule.set_path(tools.get_current_path(__file__) + "/esvg/")
# add the currrent module at the
return myModule