__manifest__.py 524 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Partners Geolocation',
  5. 'version': '2.1',
  6. 'category': 'Hidden/Tools',
  7. 'description': """
  8. Partners Geolocation
  9. ========================
  10. """,
  11. 'depends': ['base_setup'],
  12. 'data': [
  13. 'security/ir.model.access.csv',
  14. 'views/res_partner_views.xml',
  15. 'views/res_config_settings_views.xml',
  16. 'data/data.xml',
  17. ],
  18. 'installable': True,
  19. 'license': 'LGPL-3',
  20. }