__manifest__.py 551 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Google Maps',
  5. 'category': 'Website/Website',
  6. 'summary': 'Show your company address on Google Maps',
  7. 'version': '1.0',
  8. 'description': """
  9. Show your company address/partner address on Google Maps. Configure an API key in the Website settings.
  10. """,
  11. 'depends': ['base_geolocalize', 'website_partner'],
  12. 'data': [
  13. 'views/google_map_templates.xml',
  14. ],
  15. 'installable': True,
  16. 'license': 'LGPL-3',
  17. }