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