Odoo18-Base/addons/payment_paypal/__manifest__.py

27 lines
821 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Payment Provider: Paypal',
'version': '2.0',
'category': 'Accounting/Payment Providers',
'sequence': 350,
'summary': "An American payment provider for online payments all over the world.",
'description': " ", # Non-empty string to avoid loading the README file.
'depends': ['payment'],
'data': [
'views/payment_form_templates.xml',
'views/payment_provider_views.xml',
'views/payment_transaction_views.xml',
'data/payment_provider_data.xml',
],
'post_init_hook': 'post_init_hook',
'uninstall_hook': 'uninstall_hook',
'assets': {
'web.assets_frontend': [
'payment_paypal/static/src/**/*',
],
},
'license': 'LGPL-3',
}