2
0
account-financial-tools/account_loan/__manifest__.py

31 lines
1.1 KiB
Python
Raw Normal View History

2018-02-26 12:17:24 +01:00
# Copyright 2018 Creu Blanca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Account Loan management",
2024-02-09 14:29:27 +01:00
"version": "16.0.1.0.4",
2018-02-26 12:17:24 +01:00
"author": "Creu Blanca,Odoo Community Association (OCA)",
2021-11-25 16:11:51 +01:00
"website": "https://github.com/OCA/account-financial-tools",
2018-02-26 12:17:24 +01:00
"license": "AGPL-3",
"category": "Accounting",
"depends": ["account"],
2018-02-26 12:17:24 +01:00
"data": [
"wizards/account_loan_increase_amount.xml",
"data/ir_sequence_data.xml",
"security/ir.model.access.csv",
"security/account_loan_security.xml",
2023-09-15 10:04:47 +02:00
"wizards/account_loan_generate_entries_view.xml",
"wizards/account_loan_pay_amount_view.xml",
"wizards/account_loan_post_view.xml",
"views/account_loan_view.xml",
"views/account_move_view.xml",
"views/res_partner.xml",
"views/account_loan_lines_view.xml",
2018-02-26 12:17:24 +01:00
],
"installable": True,
2023-09-15 10:04:47 +02:00
"maintainers": ["etobella"],
2023-03-01 14:16:37 +01:00
"external_dependencies": {
"python": ["numpy>=1.15", "numpy-financial<=1.0.0"],
2023-03-01 14:16:37 +01:00
"deb": ["libatlas-base-dev"],
},
2018-02-26 12:17:24 +01:00
}