From e798bddecd7f615f4f5634cea9bbfae5f09f67a0 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 23 Apr 2020 16:16:27 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_location_template | 1 + setup/stock_location_template/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_location_template/odoo/addons/stock_location_template create mode 100644 setup/stock_location_template/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 973a1330f..7aa5b8a74 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20200401.0 \ No newline at end of file +12.0.20200423.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index e0b1e8c49..9f87131fc 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -33,6 +33,7 @@ setuptools.setup( 'odoo12-addon-stock_inventory_verification_request', 'odoo12-addon-stock_location_limit_product', 'odoo12-addon-stock_location_lockdown', + 'odoo12-addon-stock_location_template', 'odoo12-addon-stock_location_zone', 'odoo12-addon-stock_move_location', 'odoo12-addon-stock_mts_mto_rule', diff --git a/setup/stock_location_template/odoo/addons/stock_location_template b/setup/stock_location_template/odoo/addons/stock_location_template new file mode 120000 index 000000000..61f32bd2b --- /dev/null +++ b/setup/stock_location_template/odoo/addons/stock_location_template @@ -0,0 +1 @@ +../../../../stock_location_template \ No newline at end of file diff --git a/setup/stock_location_template/setup.py b/setup/stock_location_template/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_location_template/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)