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.

26 lines
663 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 - JWT',
  6. 'summary': 'Adds the JSON Web Token support for 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_dependencies': {
  14. 'python': [
  15. 'jwt',
  16. 'cryptography',
  17. ],
  18. },
  19. 'depends': [
  20. 'oauth_provider',
  21. ],
  22. 'data': [
  23. 'views/oauth_provider_client.xml',
  24. ],
  25. }