From 50574bfe19603fcaeaefbe5924358820e3542a7d Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 7 Jun 2018 05:40:28 +0200 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/web_list_html_widget/odoo_addons/__init__.py | 1 + setup/web_list_html_widget/odoo_addons/web_list_html_widget | 1 + setup/web_list_html_widget/setup.py | 6 ++++++ 5 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 setup/web_list_html_widget/odoo_addons/__init__.py create mode 120000 setup/web_list_html_widget/odoo_addons/web_list_html_widget create mode 100644 setup/web_list_html_widget/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index dfe66327..f51a55e9 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -8.0.20180419.0 \ No newline at end of file +8.0.20180607.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index b726c11d..7a308411 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -37,6 +37,7 @@ setuptools.setup( 'odoo8-addon-web_ir_actions_act_window_none', 'odoo8-addon-web_ir_actions_act_window_page', 'odoo8-addon-web_last_viewed_records', + 'odoo8-addon-web_list_html_widget', 'odoo8-addon-web_listview_custom_element_number', 'odoo8-addon-web_listview_show_advanced_search', 'odoo8-addon-web_m2x_options', diff --git a/setup/web_list_html_widget/odoo_addons/__init__.py b/setup/web_list_html_widget/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_list_html_widget/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_list_html_widget/odoo_addons/web_list_html_widget b/setup/web_list_html_widget/odoo_addons/web_list_html_widget new file mode 120000 index 00000000..1457a9d9 --- /dev/null +++ b/setup/web_list_html_widget/odoo_addons/web_list_html_widget @@ -0,0 +1 @@ +../../../web_list_html_widget \ No newline at end of file diff --git a/setup/web_list_html_widget/setup.py b/setup/web_list_html_widget/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_list_html_widget/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)