34 lines
786 B
Python
34 lines
786 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Tours',
|
|
'category': 'Hidden',
|
|
'description': """
|
|
Odoo Web tours.
|
|
========================
|
|
|
|
""",
|
|
'version': '0.1',
|
|
'depends': ['web'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/ir.rule.csv',
|
|
'views/tour_views.xml'
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'web_tour/static/src/**/*',
|
|
],
|
|
'web.assets_frontend': [
|
|
'web_tour/static/src/tour_pointer/**/*',
|
|
'web_tour/static/src/tour_service/**/*',
|
|
],
|
|
'web.qunit_suite_tests': [
|
|
'web_tour/static/tests/**/*',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|