From 5ded73cfc50765cdef2fef095bec33f564f46d28 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 8 Jan 2020 16:29:01 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_inventory_exclude_sublocation | 1 + setup/stock_inventory_exclude_sublocation/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation create mode 100644 setup/stock_inventory_exclude_sublocation/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index ad40abe9c..6794934ac 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200108.3 \ No newline at end of file +13.0.20200108.4 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index ad4dafe73..58f51a3cf 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -14,6 +14,7 @@ setuptools.setup( 'odoo13-addon-stock_change_qty_reason', 'odoo13-addon-stock_demand_estimate', 'odoo13-addon-stock_inventory_chatter', + 'odoo13-addon-stock_inventory_exclude_sublocation', 'odoo13-addon-stock_inventory_lockdown', 'odoo13-addon-stock_removal_location_by_priority', 'odoo13-addon-stock_warehouse_calendar', diff --git a/setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation b/setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation new file mode 120000 index 000000000..9db8dc31c --- /dev/null +++ b/setup/stock_inventory_exclude_sublocation/odoo/addons/stock_inventory_exclude_sublocation @@ -0,0 +1 @@ +../../../../stock_inventory_exclude_sublocation \ No newline at end of file diff --git a/setup/stock_inventory_exclude_sublocation/setup.py b/setup/stock_inventory_exclude_sublocation/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_inventory_exclude_sublocation/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)