reporting-engine/report_py3o/__manifest__.py

27 lines
929 B
Python
Raw Permalink Normal View History

2021-12-12 03:14:33 +00:00
# Copyright 2013 XCG Consulting (http://flectra.consulting)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Py3o Report Engine",
"summary": "Reporting engine based on Libreoffice (ODT -> ODT, "
"ODT -> PDF, ODT -> DOC, ODT -> DOCX, ODS -> ODS, etc.)",
2022-06-29 18:39:47 +00:00
"version": "2.0.1.0.2",
2021-12-12 03:14:33 +00:00
"category": "Reporting",
"license": "AGPL-3",
"author": "XCG Consulting," "ACSONE SA/NV," "Odoo Community Association (OCA)",
"website": "https://gitlab.com/flectra-community/reporting-engine",
"depends": ["web"],
2022-06-29 18:39:47 +00:00
"external_dependencies": {
"python": ["py3o.template", "py3o.formats"],
"deb": ["libreoffice"],
},
2021-12-12 03:14:33 +00:00
"data": [
"security/ir.model.access.csv",
"views/menu.xml",
"views/py3o_template.xml",
"views/ir_actions_report.xml",
"views/report_py3o.xml",
"demo/report_py3o.xml",
],
"installable": True,
}