You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
785 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright (C) 2015 Akretion (<http://www.akretion.com>)
  3. # @author: Florian da Costa
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. {
  6. 'name': 'SQL Export',
  7. 'version': '10.0.1.0.0',
  8. 'author': 'Akretion,Odoo Community Association (OCA)',
  9. 'website': 'http://www.akretion.com',
  10. 'license': 'AGPL-3',
  11. 'category': 'Generic Modules/Others',
  12. 'summary': 'Export data in csv file with SQL requests',
  13. 'depends': [
  14. 'sql_request_abstract',
  15. ],
  16. 'data': [
  17. 'views/sql_export_view.xml',
  18. 'wizard/wizard_file_view.xml',
  19. 'security/sql_export_security.xml',
  20. 'security/ir.model.access.csv',
  21. ],
  22. 'demo': [
  23. 'demo/sql_export.xml',
  24. ],
  25. 'installable': True,
  26. }