1234567891011121314151617181920212223 |
- # -*- 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',
- }
|