From 20e3520d4e5c1c71e7a07cbd52d8f21fa509343f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 7 Jan 2020 12:19:19 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../stock_demand_estimate/odoo/addons/stock_demand_estimate | 1 + setup/stock_demand_estimate/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) 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/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index df44db882..a4c48fafa 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200102.0 \ No newline at end of file +13.0.20200107.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 6ef67c63f..9e429abd8 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo13-addon-account_move_line_product', 'odoo13-addon-stock_available_unreserved', + 'odoo13-addon-stock_demand_estimate', 'odoo13-addon-stock_inventory_lockdown', 'odoo13-addon-stock_warehouse_calendar', ], 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, +)