diff --git a/base_repair/__manifest__.py b/base_repair/__manifest__.py index b5050e483..f2a02a682 100644 --- a/base_repair/__manifest__.py +++ b/base_repair/__manifest__.py @@ -6,12 +6,12 @@ "summary": """ This module extends the functionality of Odoo Repair module to add some basic features.""", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "license": "AGPL-3", "author": "Escodoo, Agile Business Group, Odoo Community Association (OCA)", "maintainers": ["marcelsavegnago"], "images": ["static/description/banner.png"], - "website": "https://github.com/oca/manufacture", + "website": "https://github.com/OCA/manufacture", "category": "Manufacturing", "depends": ["repair"], "data": ["views/repair_order.xml"], diff --git a/setup/base_repair/odoo/addons/base_repair b/setup/base_repair/odoo/addons/base_repair new file mode 120000 index 000000000..e25bfc2f4 --- /dev/null +++ b/setup/base_repair/odoo/addons/base_repair @@ -0,0 +1 @@ +../../../../base_repair \ No newline at end of file diff --git a/setup/base_repair/setup.py b/setup/base_repair/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/base_repair/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)