__manifest__.py 468 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'SMS in CRM',
  5. 'version': '1.1',
  6. 'category': 'Sales/CRM',
  7. 'summary': 'Add SMS capabilities to CRM',
  8. 'depends': ['crm', 'sms'],
  9. 'data': [
  10. 'views/crm_lead_views.xml',
  11. 'security/ir.model.access.csv',
  12. 'security/sms_security.xml',
  13. ],
  14. 'installable': True,
  15. 'auto_install': True,
  16. 'license': 'LGPL-3',
  17. }