__manifest__.py 486 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'SMS on Events',
  5. 'version': '1.0',
  6. 'category': 'Marketing/Events',
  7. 'description': """Schedule SMS in event management""",
  8. 'depends': ['event', 'sms'],
  9. 'data': [
  10. 'data/sms_data.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. }