From fa9e7ce32d1b2065b6d02b5de8e772c38acb15f3 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 26 Nov 2021 14:27:32 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_picking_comment_template | 1 + setup/stock_picking_comment_template/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template create mode 100644 setup/stock_picking_comment_template/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index dd34d45..e290189 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -14.0.20211126.0 \ No newline at end of file +14.0.20211126.1 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 0af6618..c582c1e 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo14-addon-delivery_line_sale_line_position', 'odoo14-addon-stock_card_report', + 'odoo14-addon-stock_picking_comment_template', 'odoo14-addon-stock_picking_group_by_partner_by_carrier_sale_line_position', 'odoo14-addon-stock_picking_report_valued', 'odoo14-addon-stock_quantity_history_location', diff --git a/setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template b/setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template new file mode 120000 index 0000000..b248bba --- /dev/null +++ b/setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template @@ -0,0 +1 @@ +../../../../stock_picking_comment_template \ No newline at end of file diff --git a/setup/stock_picking_comment_template/setup.py b/setup/stock_picking_comment_template/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/stock_picking_comment_template/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)