From ed801573cc1755909669c6eb7bbb7dcf3025c7c6 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 30 May 2017 04:43:23 +0200 Subject: [PATCH] [ADD] setup.py --- .../odoo_addons/__init__.py | 1 + .../odoo_addons/stock_removal_location_by_priority | 1 + setup/stock_removal_location_by_priority/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/stock_removal_location_by_priority/odoo_addons/__init__.py create mode 120000 setup/stock_removal_location_by_priority/odoo_addons/stock_removal_location_by_priority create mode 100644 setup/stock_removal_location_by_priority/setup.py diff --git a/setup/stock_removal_location_by_priority/odoo_addons/__init__.py b/setup/stock_removal_location_by_priority/odoo_addons/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/stock_removal_location_by_priority/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/stock_removal_location_by_priority/odoo_addons/stock_removal_location_by_priority b/setup/stock_removal_location_by_priority/odoo_addons/stock_removal_location_by_priority new file mode 120000 index 000000000..82c8a1585 --- /dev/null +++ b/setup/stock_removal_location_by_priority/odoo_addons/stock_removal_location_by_priority @@ -0,0 +1 @@ +../../../stock_removal_location_by_priority \ No newline at end of file diff --git a/setup/stock_removal_location_by_priority/setup.py b/setup/stock_removal_location_by_priority/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_removal_location_by_priority/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)