Can i have a package configuration like a regular python module in OpenERP?
Something like this.
main_module/
__init__.py
__openerp__.py
module.py
sub/
__init__.py
sub_module.py
sub_module2.py
I understand that in python this would allow me to call from module.submodule import * or via import module.sub_module right?
What would be the configuration of the __init__.py files to achieve this? Thanks in advance.
↧