OCA reporting engine fork for dev and update.
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.

34 lines
899 B

8 years ago
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2013 XCG Consulting (http://odoo.consulting)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. 'name': 'LibreOffice Report Engine',
  6. 'description': '''
  7. Generation of LibreOffice/OpenOffice reports using LibreOffice/OpenOffice
  8. templates.
  9. The py3o.template package is required; install it with:
  10. pip install py3o.template
  11. ''',
  12. 'version': '9.0.1.0.0',
  13. 'category': 'Reporting',
  14. 'author': 'XCG Consulting',
  15. 'website': 'http://odoo.consulting/',
  16. 'depends': [
  17. 'base',
  18. 'report'
  19. ],
  20. 'external_dependencies': {
  21. 'python': ['py3o.template',
  22. 'py3o.formats']
  23. },
  24. 'data': [
  25. 'security/ir.model.access.csv',
  26. 'views/menu.xml',
  27. 'views/py3o_template.xml',
  28. 'views/py3o_server.xml',
  29. 'views/ir_report.xml',
  30. ],
  31. 'installable': True,
  32. }