From 9706ba73584cf2ecfc6d8f01048250825b94c2e2 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 18 Nov 2019 12:58:26 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/pos_to_weight_by_product_uom | 1 + setup/pos_to_weight_by_product_uom/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/pos_to_weight_by_product_uom/odoo/addons/pos_to_weight_by_product_uom create mode 100644 setup/pos_to_weight_by_product_uom/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 5c531c31..d2695e64 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191026.0 \ No newline at end of file +12.0.20191118.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 1f07bcf8..305f6f7c 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -14,6 +14,7 @@ setuptools.setup( 'odoo12-addon-pos_picking_delayed', 'odoo12-addon-pos_report_session_summary', 'odoo12-addon-pos_ticket_logo', + 'odoo12-addon-pos_to_weight_by_product_uom', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/pos_to_weight_by_product_uom/odoo/addons/pos_to_weight_by_product_uom b/setup/pos_to_weight_by_product_uom/odoo/addons/pos_to_weight_by_product_uom new file mode 120000 index 00000000..6756546d --- /dev/null +++ b/setup/pos_to_weight_by_product_uom/odoo/addons/pos_to_weight_by_product_uom @@ -0,0 +1 @@ +../../../../pos_to_weight_by_product_uom \ No newline at end of file diff --git a/setup/pos_to_weight_by_product_uom/setup.py b/setup/pos_to_weight_by_product_uom/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/pos_to_weight_by_product_uom/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)