You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
785 B
32 lines
785 B
# coding: utf-8
|
|
# © 2015 David BEAL @ Akretion <david.beal@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
{
|
|
'name': 'Help Popup',
|
|
'version': '8.0.2.0.0',
|
|
'author': 'Akretion, Odoo Community Association (OCA)',
|
|
'depends': [
|
|
'web',
|
|
],
|
|
'website': 'https://www.akretion.com',
|
|
'data': [
|
|
'views/popup_help_view.xml',
|
|
'views/action_view.xml',
|
|
'report/report.xml',
|
|
'report/help.xml',
|
|
'report/all.xml',
|
|
'security/group.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'demo': [
|
|
'demo/help.xml',
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['bs4'],
|
|
},
|
|
'qweb': [
|
|
'static/src/xml/popup_help.xml',
|
|
],
|
|
'installable': True,
|
|
}
|