20 lines
639 B
Python
20 lines
639 B
Python
#!/usr/bin/python
|
|
import monkModule
|
|
import monkTools as tools
|
|
import os
|
|
|
|
def get_desc():
|
|
return "E-property simple property interface"
|
|
|
|
def create():
|
|
# module name is 'ewol' and type binary.
|
|
myModule = monkModule.Module(__file__, 'eproperty', 'LIBRARY')
|
|
# enable doculentation :
|
|
myModule.set_website("http://atria-soft.github.io/eproperty/")
|
|
myModule.set_website_sources("http://github.com/atria-soft/eproperty/")
|
|
myModule.set_path(os.path.join(tools.get_current_path(__file__), "eproperty"))
|
|
myModule.set_path_general_doc(os.path.join(tools.get_current_path(__file__), "doc"))
|
|
# add the currrent module at the
|
|
return myModule
|
|
|