From 1f4cbdc75420d8fc193a1b4308ba1ea3ca187e01 Mon Sep 17 00:00:00 2001 From: DavidJForgeFlow Date: Tue, 15 Nov 2022 13:03:40 +0100 Subject: [PATCH] [IMP] stock_demand_estimate: pre-commit stuff --- .../stock_demand_estimate/odoo/addons/stock_demand_estimate | 1 + setup/stock_demand_estimate/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/stock_demand_estimate/odoo/addons/stock_demand_estimate create mode 100644 setup/stock_demand_estimate/setup.py diff --git a/setup/stock_demand_estimate/odoo/addons/stock_demand_estimate b/setup/stock_demand_estimate/odoo/addons/stock_demand_estimate new file mode 120000 index 000000000..9e30f42cb --- /dev/null +++ b/setup/stock_demand_estimate/odoo/addons/stock_demand_estimate @@ -0,0 +1 @@ +../../../../stock_demand_estimate \ No newline at end of file diff --git a/setup/stock_demand_estimate/setup.py b/setup/stock_demand_estimate/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_demand_estimate/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)