blob: 7054489101aaa23d15418cb2c85f7e60576e9b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Shopper's Wishlist",
'summary': 'Allow shoppers to enlist products',
'description': """
Allow shoppers of your eCommerce store to create personalized collections of products they want to buy and save them for future reference.
""",
'author': 'Odoo SA',
'category': 'Website/Website',
'version': '1.0',
'depends': ['website_sale'],
'data': [
'security/website_sale_wishlist_security.xml',
'security/ir.model.access.csv',
'views/website_sale_wishlist_template.xml',
'views/snippets.xml',
],
'installable': True,
'license': 'LGPL-3',
}
|