__manifest__.py 421 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "IAP / CRM",
  5. 'summary': """Bridge between IAP and CRM""",
  6. 'description': """Bridge between IAP and CRM""",
  7. 'category': 'Hidden/Tools',
  8. 'version': '1.0',
  9. 'depends': [
  10. 'crm',
  11. 'iap_mail',
  12. ],
  13. 'installable': True,
  14. 'auto_install': True,
  15. 'license': 'LGPL-3',
  16. }