From 1f4751c3d7bc27fea79d05b4f45628441e5fa283 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 23 Mar 2016 22:33:46 +0100 Subject: [PATCH] [DEV] add monk file --- monk_elog.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 monk_elog.py diff --git a/monk_elog.py b/monk_elog.py new file mode 100644 index 0000000..84485b1 --- /dev/null +++ b/monk_elog.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +import monkModule +import monkTools as tools +import os + +def get_desc(): + return "EWOL log library (simple log interface)" + +def create(): + # module name is 'ewol' and type binary. + myModule = monkModule.Module(__file__, 'elog', 'LIBRARY') + # enable doculentation : + myModule.set_website("http://atria-soft.github.io/elog/") + myModule.set_website_sources("http://github.com/atria-soft/elog/") + myModule.set_path(os.path.join(tools.get_current_path(__file__), "elog")) + myModule.set_path_general_doc(os.path.join(tools.get_current_path(__file__), "doc")) + # add the currrent module at the + return myModule +