diff --git a/setup/printer_tray/odoo/__init__.py b/setup/printer_tray/odoo/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/setup/printer_tray/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/printer_tray/odoo/addons/__init__.py b/setup/printer_tray/odoo/addons/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/setup/printer_tray/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/printer_tray/odoo/addons/printer_tray b/setup/printer_tray/odoo/addons/printer_tray new file mode 120000 index 0000000..00f531b --- /dev/null +++ b/setup/printer_tray/odoo/addons/printer_tray @@ -0,0 +1 @@ +../../../../printer_tray \ No newline at end of file diff --git a/setup/printer_tray/setup.py b/setup/printer_tray/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/printer_tray/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)