__manifest__.py 939 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Shopper's Wishlist",
  5. 'summary': 'Allow shoppers to enlist products',
  6. 'description': """
  7. Allow shoppers of your eCommerce store to create personalized collections of products they want to buy and save them for future reference.
  8. """,
  9. 'author': 'Odoo SA',
  10. 'category': 'Website/Website',
  11. 'version': '1.0',
  12. 'depends': ['website_sale'],
  13. 'data': [
  14. 'security/website_sale_wishlist_security.xml',
  15. 'security/ir.model.access.csv',
  16. 'views/website_sale_wishlist_template.xml',
  17. 'views/snippets.xml',
  18. ],
  19. 'installable': True,
  20. 'assets': {
  21. 'web.assets_frontend': [
  22. 'website_sale_wishlist/static/src/**/*',
  23. ],
  24. 'web.assets_tests': [
  25. 'website_sale_wishlist/static/tests/**/*',
  26. ],
  27. },
  28. 'license': 'LGPL-3',
  29. }