__manifest__.py 799 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Spreadsheet Accounting Formulas",
  5. 'version': '1.0',
  6. 'category': 'Accounting',
  7. 'summary': 'Spreadsheet Accounting formulas',
  8. 'description': 'Spreadsheet Accounting formulas',
  9. 'depends': ['spreadsheet', 'account'],
  10. 'data': [],
  11. 'installable': True,
  12. 'auto_install': True,
  13. 'license': 'LGPL-3',
  14. 'assets': {
  15. 'spreadsheet.o_spreadsheet': [
  16. (
  17. 'after',
  18. 'spreadsheet/static/src/o_spreadsheet/o_spreadsheet.js',
  19. 'spreadsheet_account/static/src/**/*.js'
  20. ),
  21. ],
  22. 'web.qunit_suite_tests': [
  23. 'spreadsheet_account/static/tests/**/*.js',
  24. ],
  25. }
  26. }