3

Odoo Manifest

I want to know how many types of licence are available in odoo for adding in manifest descriptor. as we see an example below 'license': 'OEEL-1',

{
    'name': 'Module Name',
    'version': '1.1',
    'installable': True,
    'auto_install': True,
    'license': 'OEEL-1',
}
Hiren Jungi
  • 854
  • 8
  • 20

1 Answers1

5

According to the source code, the following values are supported:

  • GPL-2
  • GPL-2 or any later version
  • GPL-3
  • GPL-3 or any later version
  • AGPL-3
  • LGPL-3
  • Other OSI approved licence
  • OEEL-1
  • OPL-1
  • Other proprietary
Naglis
  • 2,583
  • 1
  • 19
  • 24