26 lines
671 B
Python
26 lines
671 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Product Availability Notifications',
|
|
'category': 'Website/Website',
|
|
'summary': 'Bridge module for Website sale comparison and wishlist',
|
|
'description': """
|
|
It allows for comparing products from the wishlist
|
|
""",
|
|
'depends': [
|
|
'website_sale_comparison',
|
|
'website_sale_wishlist',
|
|
],
|
|
'data': [
|
|
'views/templates.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'website_sale_comparison_wishlist/static/src/**/*',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|