From 702fd650656298abcbea62452f8c8d523f2fcaa5 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 1 Apr 2020 17:40:28 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_inventory_valuation_location | 1 + setup/stock_inventory_valuation_location/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location create mode 100644 setup/stock_inventory_valuation_location/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index aa35eaac0..973a1330f 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20200330.0 \ No newline at end of file +12.0.20200401.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index ab613748b..e0b1e8c49 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -29,6 +29,7 @@ setuptools.setup( 'odoo12-addon-stock_inventory_exclude_sublocation', 'odoo12-addon-stock_inventory_lockdown', 'odoo12-addon-stock_inventory_preparation_filter', + 'odoo12-addon-stock_inventory_valuation_location', 'odoo12-addon-stock_inventory_verification_request', 'odoo12-addon-stock_location_limit_product', 'odoo12-addon-stock_location_lockdown', diff --git a/setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location b/setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location new file mode 120000 index 000000000..73a2765f3 --- /dev/null +++ b/setup/stock_inventory_valuation_location/odoo/addons/stock_inventory_valuation_location @@ -0,0 +1 @@ +../../../../stock_inventory_valuation_location \ No newline at end of file diff --git a/setup/stock_inventory_valuation_location/setup.py b/setup/stock_inventory_valuation_location/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_inventory_valuation_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)