__manifest__.py 737 B

12345678910111213141516171819202122232425
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Product Images',
  4. 'version': '1.0',
  5. 'description': """
  6. Automatically set product images based on the barcode
  7. =====================================================
  8. This module integrates with the Google Custom Search API to set images on products based on the
  9. barcode.
  10. """,
  11. 'license': 'LGPL-3',
  12. 'category': 'Technical',
  13. 'depends': ['product'],
  14. 'data': [
  15. 'data/ir_cron_data.xml',
  16. 'security/product_security.xml',
  17. 'security/ir.model.access.csv',
  18. 'views/res_config_settings_views.xml',
  19. 'wizard/product_fetch_image_wizard_views.xml',
  20. ],
  21. 'uninstall_hook': 'uninstall_hook',
  22. }