From 58100ce07e22eede1baf148620b2a67f93c7c9e9 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 30 Dec 2019 16:07:01 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_demand_estimate_matrix | 1 + setup/stock_demand_estimate_matrix/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix create mode 100644 setup/stock_demand_estimate_matrix/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index cc2f171c2..5085ed6f3 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191224.0 \ No newline at end of file +12.0.20191230.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 90d624de6..9e3b6fdc5 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -20,6 +20,7 @@ setuptools.setup( 'odoo12-addon-stock_change_qty_reason', 'odoo12-addon-stock_cycle_count', 'odoo12-addon-stock_demand_estimate', + 'odoo12-addon-stock_demand_estimate_matrix', 'odoo12-addon-stock_inventory_chatter', 'odoo12-addon-stock_inventory_cost_info', 'odoo12-addon-stock_inventory_discrepancy', diff --git a/setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix b/setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix new file mode 120000 index 000000000..73de46a1c --- /dev/null +++ b/setup/stock_demand_estimate_matrix/odoo/addons/stock_demand_estimate_matrix @@ -0,0 +1 @@ +../../../../stock_demand_estimate_matrix \ No newline at end of file diff --git a/setup/stock_demand_estimate_matrix/setup.py b/setup/stock_demand_estimate_matrix/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_demand_estimate_matrix/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)