diff --git a/mrp_warehouse_calendar/__manifest__.py b/mrp_warehouse_calendar/__manifest__.py index 4c0164a46..94fa1f19f 100644 --- a/mrp_warehouse_calendar/__manifest__.py +++ b/mrp_warehouse_calendar/__manifest__.py @@ -6,7 +6,7 @@ "summary": "Considers the warehouse calendars in manufacturing", "version": "13.0.1.0.0", "license": "LGPL-3", - "website": "https://github.com/manufacture", + "website": "https://github.com/OCA/manufacture", "author": "ForgeFlow, Odoo Community Association (OCA)", "category": "Manufacturing", "depends": ["mrp", "stock_warehouse_calendar"], diff --git a/setup/mrp_warehouse_calendar/odoo/addons/mrp_warehouse_calendar b/setup/mrp_warehouse_calendar/odoo/addons/mrp_warehouse_calendar new file mode 120000 index 000000000..0021f7f99 --- /dev/null +++ b/setup/mrp_warehouse_calendar/odoo/addons/mrp_warehouse_calendar @@ -0,0 +1 @@ +../../../../mrp_warehouse_calendar \ No newline at end of file diff --git a/setup/mrp_warehouse_calendar/setup.py b/setup/mrp_warehouse_calendar/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/mrp_warehouse_calendar/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)