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