Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Odoo 10 - How to include Python package dependency in __manifest__

Tags:

openerp

If a new Odoo module requires a given Python package, is it needed or recommended to include that dependency in manifest.py as external dependency?

If so, how is that reference specifically included?

like image 343
M.E. Avatar asked Jan 29 '23 15:01

M.E.


1 Answers

You can add external_dependencies in manifest file of module as following :

"external_dependencies": {"python": [name of library/python package,..]},

For more information : See here

like image 62
Emipro Technologies Pvt. Ltd. Avatar answered Mar 14 '23 22:03

Emipro Technologies Pvt. Ltd.