From b6ec68dda8bd8fbaa87b8c91fccc4fb859ba7775 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 27 Jan 2020 17:52:54 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/stock_move_location/odoo/addons/stock_move_location | 1 + setup/stock_move_location/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_move_location/odoo/addons/stock_move_location create mode 100644 setup/stock_move_location/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 5d1c2d875..5e9dc0b94 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200127.0 \ No newline at end of file +13.0.20200127.1 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index eb88d9a71..75514822a 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -17,6 +17,7 @@ setuptools.setup( 'odoo13-addon-stock_inventory_chatter', 'odoo13-addon-stock_inventory_exclude_sublocation', 'odoo13-addon-stock_inventory_lockdown', + 'odoo13-addon-stock_move_location', 'odoo13-addon-stock_orderpoint_uom', 'odoo13-addon-stock_removal_location_by_priority', 'odoo13-addon-stock_warehouse_calendar', diff --git a/setup/stock_move_location/odoo/addons/stock_move_location b/setup/stock_move_location/odoo/addons/stock_move_location new file mode 120000 index 000000000..c0bc16074 --- /dev/null +++ b/setup/stock_move_location/odoo/addons/stock_move_location @@ -0,0 +1 @@ +../../../../stock_move_location \ No newline at end of file diff --git a/setup/stock_move_location/setup.py b/setup/stock_move_location/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_move_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)