__manifest__.py 369 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'test xlsx export',
  5. 'version': '0.1',
  6. 'category': 'Hidden/Tests',
  7. 'description': """A module to test xlsx export.""",
  8. 'depends': ['web', 'test_mail'],
  9. 'data': ['ir.model.access.csv'],
  10. 'installable': True,
  11. 'license': 'LGPL-3',
  12. }