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.

34 lines
1.1 KiB

  1. # Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
  2. # @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. 'name': "Module Analysis",
  6. 'summary': "Add analysis tools regarding installed modules"
  7. " to know which installed modules comes from Odoo Core, OCA, or are"
  8. " custom modules",
  9. 'author': 'GRAP, Odoo Community Association (OCA)',
  10. 'website': "https://github.com/OCA/server-tools/",
  11. 'version': '12.0.1.0.0',
  12. 'license': 'AGPL-3',
  13. 'depends': [
  14. 'base',
  15. ],
  16. 'data': [
  17. 'security/ir.model.access.csv',
  18. 'views/menu.xml',
  19. 'views/view_base_module_update.xml',
  20. 'views/view_ir_module_author.xml',
  21. 'views/view_ir_module_type.xml',
  22. 'views/view_ir_module_type_rule.xml',
  23. 'views/view_ir_module_module.xml',
  24. 'data/ir_module_type.xml',
  25. 'data/ir_module_type_rule.xml',
  26. ],
  27. 'external_dependencies': {
  28. 'python': ['pygount'],
  29. },
  30. 'post_init_hook': 'analyse_installed_modules',
  31. 'installable': True,
  32. }