From 6ff45226a48a2f9b56aaf88621ca7f8df81f7673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Wed, 26 Apr 2017 11:25:06 +0200 Subject: [PATCH] [ADD] add setup for pos_payment_entrie_globalization --- .../odoo_addons/__init__.py | 1 + .../odoo_addons/pos_payment_entries_globalization | 1 + setup/pos_payment_entries_globalization/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/pos_payment_entries_globalization/odoo_addons/__init__.py create mode 120000 setup/pos_payment_entries_globalization/odoo_addons/pos_payment_entries_globalization create mode 100644 setup/pos_payment_entries_globalization/setup.py diff --git a/setup/pos_payment_entries_globalization/odoo_addons/__init__.py b/setup/pos_payment_entries_globalization/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/pos_payment_entries_globalization/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/pos_payment_entries_globalization/odoo_addons/pos_payment_entries_globalization b/setup/pos_payment_entries_globalization/odoo_addons/pos_payment_entries_globalization new file mode 120000 index 00000000..55ffc448 --- /dev/null +++ b/setup/pos_payment_entries_globalization/odoo_addons/pos_payment_entries_globalization @@ -0,0 +1 @@ +../../../pos_payment_entries_globalization \ No newline at end of file diff --git a/setup/pos_payment_entries_globalization/setup.py b/setup/pos_payment_entries_globalization/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/pos_payment_entries_globalization/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)