From bbe9059b062e73db1de61fbb703478705532e033 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 26 Aug 2019 11:20:43 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_quantity_history_location | 1 + setup/stock_quantity_history_location/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location create mode 100644 setup/stock_quantity_history_location/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index cb3125a..1dc8963 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20190714.0 \ No newline at end of file +12.0.20190826.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 8733dee..c14149f 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo12-addon-stock_picking_comment_template', 'odoo12-addon-stock_picking_report_valued', + 'odoo12-addon-stock_quantity_history_location', 'odoo12-addon-stock_report_quantity_by_location', ], classifiers=[ diff --git a/setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location b/setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location new file mode 120000 index 0000000..2f1a370 --- /dev/null +++ b/setup/stock_quantity_history_location/odoo/addons/stock_quantity_history_location @@ -0,0 +1 @@ +../../../../stock_quantity_history_location \ No newline at end of file diff --git a/setup/stock_quantity_history_location/setup.py b/setup/stock_quantity_history_location/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/stock_quantity_history_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)