From 45b96ff130be44e11f078875423eea5ef75a5311 Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Thu, 25 Apr 2019 12:02:16 +0200 Subject: [PATCH] [ADD] POS Restricted Customer: setup --- setup/pos_restricted_customer_list/odoo_addons/__init__.py | 1 + .../odoo_addons/pos_restricted_customer_list | 1 + setup/pos_restricted_customer_list/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/pos_restricted_customer_list/odoo_addons/__init__.py create mode 120000 setup/pos_restricted_customer_list/odoo_addons/pos_restricted_customer_list create mode 100644 setup/pos_restricted_customer_list/setup.py diff --git a/setup/pos_restricted_customer_list/odoo_addons/__init__.py b/setup/pos_restricted_customer_list/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/pos_restricted_customer_list/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/pos_restricted_customer_list/odoo_addons/pos_restricted_customer_list b/setup/pos_restricted_customer_list/odoo_addons/pos_restricted_customer_list new file mode 120000 index 00000000..45882471 --- /dev/null +++ b/setup/pos_restricted_customer_list/odoo_addons/pos_restricted_customer_list @@ -0,0 +1 @@ +../../../pos_restricted_customer_list \ No newline at end of file diff --git a/setup/pos_restricted_customer_list/setup.py b/setup/pos_restricted_customer_list/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/pos_restricted_customer_list/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)