Odoo18-Base/addons/web_kanban_gauge/__manifest__.py
2025-03-10 11:12:23 +07:00

23 lines
560 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Gauge Widget for Kanban',
'category': 'Hidden',
'description': """
This widget allows to display gauges using d3 library.
""",
'version': '1.0',
'depends': ['web'],
'assets' : {
'web.assets_backend': [
'web_kanban_gauge/static/src/**/*',
],
'web.qunit_suite_tests': [
'web_kanban_gauge/static/tests/**/*',
],
},
'auto_install': True,
'license': 'LGPL-3',
}