Reputation: 5
What is the use of Use of openerp.py file in openerp7.I understand the usage of init.py file.for my custom module how it is useful?
Upvotes: 0
Views: 998
Reputation: 11141
The __openerp__.py
file is the OpenERP descriptor which contains a single Python dictionary with the actual declaration of Module. It is necessary file for an openerp module. All the details, dependencies, files used etc are specified here in the __openerp__.py
file. Here is Python dictionary key description
Hope this will help you.
Upvotes: 3
Reputation: 36
The openep.py file is like the setup.py file in Python modules. You need it in every module
Upvotes: 0