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.

55 lines
1.8 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # LibreOffice Report Engine, for OpenERP
  5. # Copyright (C) 2013 XCG Consulting (http://odoo.consulting)
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. # Author: Anael LORIMIER <anael.lorimier@xcg-consulting.fr>
  21. # Vincent Lhote-Hatakeyama <vincent.lhote@xcg-consulting.fr>
  22. #
  23. ##############################################################################
  24. {
  25. 'name': 'LibreOffice Report Engine',
  26. 'description': '''
  27. Generation of LibreOffice/OpenOffice reports using LibreOffice/OpenOffice
  28. templates.
  29. The py3o.template package is required; install it with:
  30. pip install py3o.template
  31. ''',
  32. 'version': '8.0.2.1',
  33. 'category': 'Reporting',
  34. 'author': 'XCG Consulting',
  35. 'website': 'http://odoo.consulting/',
  36. 'depends': [
  37. 'base',
  38. 'report'
  39. ],
  40. 'external_dependencies': {
  41. 'python': ['py3o.template']
  42. },
  43. 'data': [
  44. 'security/ir.model.access.csv',
  45. 'views/menu.xml',
  46. 'views/py3o_template.xml',
  47. 'views/py3o_server.xml',
  48. 'views/ir_report.xml',
  49. 'data/py3o.fusion.filetype.csv',
  50. ],
  51. 'installable': True,
  52. }