diff --git a/product_category_code/__manifest__.py b/product_category_code/__manifest__.py index 26132613928..abf328c5947 100644 --- a/product_category_code/__manifest__.py +++ b/product_category_code/__manifest__.py @@ -5,7 +5,7 @@ "name": "Product Category Code", "summary": """ Allows to define a code on product categories""", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "license": "AGPL-3", "author": "ACSONE SA/NV,Odoo Community Association (OCA)", "maintainers": ["rousseldenis"], diff --git a/setup/product_category_code/odoo/addons/product_category_code b/setup/product_category_code/odoo/addons/product_category_code new file mode 120000 index 00000000000..fe3dde7581c --- /dev/null +++ b/setup/product_category_code/odoo/addons/product_category_code @@ -0,0 +1 @@ +../../../../product_category_code \ No newline at end of file diff --git a/setup/product_category_code/setup.py b/setup/product_category_code/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/product_category_code/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)