__manifest__.py 656 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'OdooBot',
  5. 'version': '1.2',
  6. 'category': 'Productivity/Discuss',
  7. 'summary': 'Add OdooBot in discussions',
  8. 'website': 'https://www.odoo.com/app/discuss',
  9. 'depends': ['mail'],
  10. 'auto_install': True,
  11. 'installable': True,
  12. 'data': [
  13. 'views/res_users_views.xml',
  14. 'data/mailbot_data.xml',
  15. ],
  16. 'demo': [
  17. 'data/mailbot_demo.xml',
  18. ],
  19. 'assets': {
  20. 'web.assets_backend': [
  21. 'mail_bot/static/src/scss/odoobot_style.scss',
  22. ],
  23. },
  24. 'license': 'LGPL-3',
  25. }