-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy path__manifest__.py
26 lines (25 loc) · 1.1 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- coding: utf-8 -*-
{
'name': 'MercadoPago Payment Acquirer',
'category': 'Accounting',
'summary': 'Payment Acquirer: MercadoPago Implementation for Odoo version 13.0',
'version': '13.1.27.0',
'description': """MercadoPago Payment Acquirer""",
'author': 'Moldeo Interactive',
'website': 'https://www.moldeointeractive.com',
'depends': ['payment','website','website_sale'],
'data': [
'views/mercadopago.xml',
'views/payment_acquirer.xml',
#'views/res_config_view.xml',
'data/mercadopago.xml',
],
'images': ['src/img/mercadopago_icon.png','src/img/mercadopago_logo.png',
'src/img/mercadopago_logo_64.png',
'static/description/payment_mercadopago_screenshot.png','static/description/main_screenshot.png',
'static/description/main2_screenshot.png',
'static/description/create_application_mp_sreenshot.png','static/description/credentials_mercadopago_screenshot.png'],
'installable': True,
'license': 'GPL-3',
'post_init_hook': 'create_missing_journal_for_acquirers',
}