__manifest__.py 560 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Gauge Widget for Kanban',
  5. 'category': 'Hidden',
  6. 'description': """
  7. This widget allows to display gauges using d3 library.
  8. """,
  9. 'version': '1.0',
  10. 'depends': ['web'],
  11. 'assets' : {
  12. 'web.assets_backend': [
  13. 'web_kanban_gauge/static/src/**/*',
  14. ],
  15. 'web.qunit_suite_tests': [
  16. 'web_kanban_gauge/static/tests/**/*',
  17. ],
  18. },
  19. 'auto_install': True,
  20. 'license': 'LGPL-3',
  21. }