reporting-engine/bi_sql_editor/__manifest__.py

26 lines
870 B
Python
Raw Permalink Normal View History

2024-05-03 09:07:13 +00:00
# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "BI SQL Editor",
"summary": "BI Views builder, based on Materialized or Normal SQL Views",
2024-10-01 05:53:56 +00:00
"version": "3.0.1.1.0",
2024-05-03 09:07:13 +00:00
"license": "AGPL-3",
"category": "Reporting",
"author": "GRAP,Odoo Community Association (OCA)",
"website": "https://gitlab.com/flectra-community/reporting-engine",
"depends": [
"spreadsheet_dashboard",
"sql_request_abstract",
],
"data": [
"security/ir.model.access.csv",
"views/view_bi_sql_view.xml",
],
"demo": ["demo/res_groups_demo.xml", "demo/bi_sql_view_demo.xml"],
"installable": True,
"uninstall_hook": "uninstall_hook",
"maintainers": ["legalsylvain"],
}