akretion/payment-gateway

View on GitHub
payment_gateway_paypal/__openerp__.py

Summary

Maintainability
A
1 hr
Test Coverage
# -*- coding: utf-8 -*-
# Copyright 2017 Akretion (http://www.akretion.com).
# @author Sébastien BEAU <sebastien.beau@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
    "name": "Paypal Payment Gateway",
    "summary": "Paypal Payment Gateway alternative for odoo",
    "version": "8.0.1.0.0",
    "category": "Payment",
    "website": "www.akretion.com",
    "author": " Akretion",
    "license": "AGPL-3",
    "application": False,
    "installable": True,
    "external_dependencies": {
        "python": ['paypalrestsdk'],
        "bin": [],
    },
    "depends": [
        "payment_gateway",
    ],
    "data": [
        "data/payment_method_data.xml",
    ],
    "demo": [
    ],
    "qweb": [
    ]
}