Reputation: 5527
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?
Upvotes: 6
Views: 2848
Reputation: 14746
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
Upvotes: 10