-
Notifications
You must be signed in to change notification settings - Fork 11
/
__manifest__.py
36 lines (35 loc) · 1.05 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
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
{
'name': 'Webpay Payment Acquirer',
'category': 'Accounting',
'author': 'Daniel Santibáñez Polanco',
'summary': 'Payment Acquirer: Webpay Implementation',
'website': 'https://odoocoop.cl',
'version': "1.2.2",
'description': """Webpay Payment Acquirer""",
'depends': [
'payment',
'sale_payment',
],
'external_dependencies': {
'python':[
'suds',
#'wsse',
'xmlsec',
'urllib3',
# 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_acquirer.xml',
'views/payment_transaction.xml',
'views/website_sale_template.xml',
'data/webpay.xml',
],
'installable': True,
'application': True,
}