__manifest__.py 673 B

123456789101112131415161718192021
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': "Payment Provider: Mercado Pago",
  4. 'version': '1.0',
  5. 'category': 'Accounting/Payment Providers',
  6. 'sequence': 350,
  7. 'summary': "A payment provider covering several countries in Latin America.",
  8. 'depends': ['payment'],
  9. 'data': [
  10. 'views/payment_mercado_pago_templates.xml',
  11. 'views/payment_provider_views.xml',
  12. 'data/payment_provider_data.xml', # Depends on views/payment_mercado_pago_templates.xml
  13. ],
  14. 'application': False,
  15. 'post_init_hook': 'post_init_hook',
  16. 'uninstall_hook': 'uninstall_hook',
  17. 'license': 'LGPL-3',
  18. }