From 634d32465f627f61f34cdf9363c5fef01a4d8792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A0n=20Todorovich?= Date: Tue, 25 Oct 2022 15:40:59 -0300 Subject: [PATCH] [IMP] mrp_bom_attribute_match: pre-commit execution --- .../odoo/addons/mrp_bom_attribute_match | 1 + setup/mrp_bom_attribute_match/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/mrp_bom_attribute_match/odoo/addons/mrp_bom_attribute_match create mode 100644 setup/mrp_bom_attribute_match/setup.py diff --git a/setup/mrp_bom_attribute_match/odoo/addons/mrp_bom_attribute_match b/setup/mrp_bom_attribute_match/odoo/addons/mrp_bom_attribute_match new file mode 120000 index 000000000..c9961e531 --- /dev/null +++ b/setup/mrp_bom_attribute_match/odoo/addons/mrp_bom_attribute_match @@ -0,0 +1 @@ +../../../../mrp_bom_attribute_match \ No newline at end of file diff --git a/setup/mrp_bom_attribute_match/setup.py b/setup/mrp_bom_attribute_match/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/mrp_bom_attribute_match/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)