-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__openerp__.py
27 lines (27 loc) · 944 Bytes
/
__openerp__.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
27
# -*- coding: utf-8 -*-
{
'name': 'Webpay Payment Acquirer',
'category': 'Accounting',
'author': u'Daniel Santibáñez Polanco / Daniel Blanco - Blanco Martín & Asociados',
'summary': 'Payment Acquirer: Webpay Implementation',
'website': 'https://odoocoop.cl',
'version': "8.0.2.0.0",
'depends': ['payment', 'website_sale', 'l10n_cl_invoice'],
'python-depends': [
'suds',
'py-wsse',
# En Debian/Ubuntu:
# sudo apt-get install libssl-dev libxml2-dev libxmlsec1-dev
# Sistemas basados en RedHat:
# sudo yum install openssl-devel libxml2-devel xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel
],
'data': [
'views/webpay.xml',
'views/payment_success.xml',
'views/payment_checkout.xml',
'views/payment_acquirer.xml',
'views/payment_transaction.xml',
'data/webpay.xml',
],
'installable': True,
}