From 169a55cbb2579682c42e5e26c67bbc07b81f7448 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 1 Feb 2021 17:24:41 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_location_last_inventory_date | 1 + setup/stock_location_last_inventory_date/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date create mode 100644 setup/stock_location_last_inventory_date/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 7c3dd64b3..fed32fdda 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20210118.0 \ No newline at end of file +13.0.20210201.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 0cf33884d..756006997 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -31,6 +31,7 @@ setuptools.setup( 'odoo13-addon-stock_inventory_preparation_filter', 'odoo13-addon-stock_location_bin_name', 'odoo13-addon-stock_location_children', + 'odoo13-addon-stock_location_last_inventory_date', 'odoo13-addon-stock_location_lockdown', 'odoo13-addon-stock_location_position', 'odoo13-addon-stock_location_tray', diff --git a/setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date b/setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date new file mode 120000 index 000000000..f6b3dd1eb --- /dev/null +++ b/setup/stock_location_last_inventory_date/odoo/addons/stock_location_last_inventory_date @@ -0,0 +1 @@ +../../../../stock_location_last_inventory_date \ No newline at end of file diff --git a/setup/stock_location_last_inventory_date/setup.py b/setup/stock_location_last_inventory_date/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_location_last_inventory_date/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)