From d59becba8a45e7005d09f0098ebeb3d858e0f8d6 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 13 Jun 2018 05:44:13 +0200 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/web_ir_actions_act_multi | 1 + setup/web_ir_actions_act_multi/setup.cfg | 2 ++ setup/web_ir_actions_act_multi/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi create mode 100644 setup/web_ir_actions_act_multi/setup.cfg create mode 100644 setup/web_ir_actions_act_multi/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index d2112b5c..9ed45693 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180607.0 \ No newline at end of file +11.0.20180613.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 7abf85f8..d3443671 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -14,6 +14,7 @@ setuptools.setup( 'odoo11-addon-web_environment_ribbon', 'odoo11-addon-web_favicon', 'odoo11-addon-web_group_expand', + 'odoo11-addon-web_ir_actions_act_multi', 'odoo11-addon-web_listview_range_select', 'odoo11-addon-web_no_bubble', 'odoo11-addon-web_notify', diff --git a/setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi b/setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi new file mode 120000 index 00000000..70dacab2 --- /dev/null +++ b/setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi @@ -0,0 +1 @@ +../../../../web_ir_actions_act_multi \ No newline at end of file diff --git a/setup/web_ir_actions_act_multi/setup.cfg b/setup/web_ir_actions_act_multi/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/web_ir_actions_act_multi/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/web_ir_actions_act_multi/setup.py b/setup/web_ir_actions_act_multi/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_ir_actions_act_multi/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)