From 44b9a19fe2353a8f6f3fedd969e816a6e2b860a0 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 14 Mar 2018 04:37:28 +0100 Subject: [PATCH] [ADD] setup.py --- .../odoo/addons/mail_restrict_follower_selection | 1 + setup/mail_restrict_follower_selection/setup.cfg | 2 ++ setup/mail_restrict_follower_selection/setup.py | 6 ++++++ 3 files changed, 9 insertions(+) create mode 120000 setup/mail_restrict_follower_selection/odoo/addons/mail_restrict_follower_selection create mode 100644 setup/mail_restrict_follower_selection/setup.cfg create mode 100644 setup/mail_restrict_follower_selection/setup.py diff --git a/setup/mail_restrict_follower_selection/odoo/addons/mail_restrict_follower_selection b/setup/mail_restrict_follower_selection/odoo/addons/mail_restrict_follower_selection new file mode 120000 index 00000000..298f2f73 --- /dev/null +++ b/setup/mail_restrict_follower_selection/odoo/addons/mail_restrict_follower_selection @@ -0,0 +1 @@ +../../../../mail_restrict_follower_selection \ No newline at end of file diff --git a/setup/mail_restrict_follower_selection/setup.cfg b/setup/mail_restrict_follower_selection/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/mail_restrict_follower_selection/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/mail_restrict_follower_selection/setup.py b/setup/mail_restrict_follower_selection/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/mail_restrict_follower_selection/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)