You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
797 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2016 SYLEAM
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. 'name': 'OAuth Provider',
  6. 'summary': 'Allows to use Odoo as an OAuth2 provider',
  7. 'version': '9.0.1.0.0',
  8. 'category': 'Authentication',
  9. 'website': 'http://www.syleam.fr/',
  10. 'author': 'SYLEAM, Odoo Community Association (OCA)',
  11. 'license': 'AGPL-3',
  12. 'installable': True,
  13. 'external_dependancies': {
  14. 'python': ['oauthlib'],
  15. },
  16. 'depends': [
  17. 'base',
  18. ],
  19. 'data': [
  20. 'security/oauth_provider_security.xml',
  21. 'security/ir.model.access.csv',
  22. 'views/oauth_provider_client.xml',
  23. 'views/oauth_provider_scope.xml',
  24. 'templates/authorization.xml',
  25. ],
  26. 'pre_init_hook': 'pre_init_hook',
  27. }