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
932 B

  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "res_partner_mails_count",
  4. 'summary': """
  5. Short (1 phrase/line) summary of the module's purpose, used as
  6. subtitle on modules listing or apps.openerp.com""",
  7. 'description': """
  8. Long description of module's purpose
  9. """,
  10. 'author': "Your Company",
  11. 'website': "http://www.yourcompany.com",
  12. # Categories can be used to filter modules in modules listing
  13. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  14. # for the full list
  15. 'category': 'Uncategorized',
  16. 'version': '0.1',
  17. # any module necessary for this one to work correctly
  18. 'depends': ['base'],
  19. # always loaded
  20. 'data': [
  21. # 'security/ir.model.access.csv',
  22. 'views/res_partner_mails_count.xml',
  23. 'templates.xml',
  24. ],
  25. # only loaded in demonstration mode
  26. 'demo': [
  27. 'demo.xml',
  28. ],
  29. }