17 lines
455 B
Python
17 lines
455 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': "Spreadsheet dashboard for accounting",
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'summary': 'Spreadsheet',
|
|
'description': 'Spreadsheet',
|
|
'depends': ['spreadsheet_dashboard', 'account'],
|
|
'data': [
|
|
"data/dashboards.xml",
|
|
],
|
|
'installable': True,
|
|
'auto_install': ['account'],
|
|
'license': 'LGPL-3',
|
|
}
|