__manifest__.py 629 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Onboarding toolbox',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'sequence': 9001,
  8. 'description': """
  9. This module allows to manage onboardings and their progress
  10. ================================================================================
  11. """,
  12. 'depends': ['base'],
  13. 'installable': True,
  14. 'data': [
  15. 'data/onboarding_data.xml',
  16. 'views/onboarding_views.xml',
  17. 'views/onboarding_menus.xml',
  18. 'security/ir.model.access.csv',
  19. ],
  20. 'license': 'LGPL-3',
  21. }