Files
design-themes/website_animate/__manifest__.py
T
Xavier-Do 8dc887764b [FIX] *: add explicit license to all manifest
The license is missing in most enterprise manifest so
the decision was taken to make it explicit in all cases.
When not defined, a warning will be triggered starting from
14.0 when falling back on the default LGPL-3.

closes odoo/design-themes#48

Related: odoo/odoo#74245
Related: odoo/enterprise#19862
Signed-off-by: Xavier Dollé (xdo) <xdo@odoo.com>
2021-07-26 13:09:57 +00:00

25 lines
647 B
Python

{
'name':'Website Animate',
'description':"Provide animation for page\'s blocks",
'category': 'Website',
'version':'1.1',
'author':'Odoo S.A.',
'data': [
'views/options.xml',
],
'depends': ['website'],
'images': [
'static/description/icon.png',
],
'assets': {
'web.assets_frontend': [
'website_animate/static/src/scss/o_animate_frontend.scss',
'website_animate/static/src/js/o_animate.frontend.js',
],
'website.assets_editor': [
'website_animate/static/src/js/o_animate.editor.js',
],
},
'license': 'LGPL-3',
}