M.E.
M.E.

Reputation: 5527

Odoo 10 - How to include Python package dependency in __manifest__

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

Answers (1)

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

Related Questions