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.

30 lines
869 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2016-2017 LasLabs Inc.
  3. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  4. {
  5. 'name': 'MFA Support',
  6. 'summary': 'Allows users to enable MFA and add optional trusted devices',
  7. 'version': '9.0.1.0.1',
  8. 'category': 'Extra Tools',
  9. 'website': 'https://laslabs.com/',
  10. 'author': 'LasLabs, Odoo Community Association (OCA)',
  11. 'license': 'LGPL-3',
  12. 'application': False,
  13. 'installable': True,
  14. 'external_dependencies': {
  15. 'python': ['pyotp'],
  16. },
  17. 'depends': [
  18. 'report',
  19. 'web',
  20. ],
  21. 'data': [
  22. 'data/ir_config_parameter.xml',
  23. 'security/ir.model.access.csv',
  24. 'security/res_users_authenticator_security.xml',
  25. 'wizards/res_users_authenticator_create.xml',
  26. 'views/auth_totp.xml',
  27. 'views/res_users.xml',
  28. ],
  29. }