* Rename the module for publish on odoo marketplace. * More renaming needed.
46 lines
1.7 KiB
Python
46 lines
1.7 KiB
Python
#******************************************************************************
|
|
# PAYMENT BTCPAY SERVER FOR ODOO
|
|
#
|
|
# Copyright (C) 2024 Susanna Fort <susannafm@gmail.com>, ndeet
|
|
#
|
|
#******************************************************************************
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 2 of
|
|
# the License, or any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# For a full copy of the GNU General Public License see the LICENSE.txt file.
|
|
#
|
|
#******************************************************************************
|
|
|
|
{
|
|
'name': 'Payment Provider: BTCPay Server',
|
|
'summary': 'This module integrates BTCPAY - pay with Bitcoin - with Odoo v17.0',
|
|
'author': 'Vandekul, ndeet',
|
|
'website': 'https://github.com/btcpayserver/odoo',
|
|
'category': 'Accounting/Payment Providers',
|
|
'version': '17.0.2.0',
|
|
'license': 'GPL-3',
|
|
'currency': 'USD',
|
|
'application': False,
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'depends': ['base', 'account', 'payment'],
|
|
'data': [
|
|
'views/payment_btcpayserver_templates.xml',
|
|
'views/payment_provider_views.xml',
|
|
'views/payment_transaction_views.xml',
|
|
'data/payment_provider_data.xml',
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['btcpay-python']
|
|
},
|
|
'post_init_hook': 'post_init_hook',
|
|
'uninstall_hook': 'uninstall_hook',
|
|
} |