ejson/monk_ejson.py

19 lines
587 B
Python
Raw Normal View History

2013-12-22 19:01:46 +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-json Json parser and genrator"
2013-12-22 19:01:46 +01:00
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'ejson', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/ejson/")
2013-12-28 16:09:29 +01:00
myModule.set_website_sources("http://github.com/heeroyui/ejson/")
2013-12-22 19:01:46 +01:00
myModule.set_path(tools.get_current_path(__file__) + "/ejson/")
myModule.set_path_general_doc(tools.get_current_path(__file__) + "/doc/")
2013-12-22 19:01:46 +01:00
# add the currrent module at the
return myModule