odoo_account_ebics/account_ebics/__manifest__.py

27 lines
757 B
Python
Raw Normal View History

2018-08-14 14:49:57 +00:00
# -*- coding: utf-8 -*-
2022-03-01 21:24:12 +00:00
# Copyright 2009-2022 Noviat.
2018-08-14 14:49:57 +00:00
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'EBICS banking protocol',
2022-03-01 21:24:12 +00:00
'version': '10.0.1.6.3',
2018-08-14 14:49:57 +00:00
'license': 'AGPL-3',
'author': 'Noviat',
'category': 'Accounting & Finance',
'depends': ['account'],
'data': [
'security/ebics_security.xml',
'security/ir.model.access.csv',
'data/ebics_file_format.xml',
'views/menuitem.xml',
'views/ebics_config.xml',
'views/ebics_file.xml',
'views/ebics_file_format.xml',
'wizard/ebics_change_passphrase.xml',
'wizard/ebics_xfer.xml',
],
'installable': True,
'application': True,
2023-03-26 14:16:23 +00:00
"images": ["static/description/cover.png"],
2018-08-14 14:49:57 +00:00
}