Files
reporting-engine/__openerp__.py
Vincent Lhote-Hatakeyama 95a4f0fff2 1.3 production release
2014-12-22 11:57:46 +01:00

31 lines
735 B
Python

# -*- coding: utf-8 -*-
{
'name': 'LibreOffice Report Engine',
'description': '''
Generation of LibreOffice/OpenOffice reports using LibreOffice/OpenOffice
templates.
The py3o.template package is required; install it with:
pip install py3o.template
''',
'version': '1.3',
'category': 'Reporting',
'author': 'XCG Consulting',
'website': 'http://odoo.consulting/',
'depends': [
'base'
],
'external_dependencies': {
'python': ['py3o.template']
},
'data': [
'menu.xml',
'ir_report.xml',
'py3o_template.xml',
'py3o_server.xml',
'data/py3o.fusion.filetype.csv',
'security/ir.model.access.csv',
],
'installable': True,
}