From 1ea97cc1775f80b27189818ea61f4c6ef58ce159 Mon Sep 17 00:00:00 2001 From: Carlos Roca Date: Mon, 26 Feb 2024 11:15:19 +0100 Subject: [PATCH] [IMP] web_pivot_computed_measure: pre-commit stuff --- .../odoo/addons/web_pivot_computed_measure | 1 + setup/web_pivot_computed_measure/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/web_pivot_computed_measure/odoo/addons/web_pivot_computed_measure create mode 100644 setup/web_pivot_computed_measure/setup.py diff --git a/setup/web_pivot_computed_measure/odoo/addons/web_pivot_computed_measure b/setup/web_pivot_computed_measure/odoo/addons/web_pivot_computed_measure new file mode 120000 index 000000000..282ada6fd --- /dev/null +++ b/setup/web_pivot_computed_measure/odoo/addons/web_pivot_computed_measure @@ -0,0 +1 @@ +../../../../web_pivot_computed_measure \ No newline at end of file diff --git a/setup/web_pivot_computed_measure/setup.py b/setup/web_pivot_computed_measure/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_pivot_computed_measure/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)