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