diff --git a/setup/mail_attach_existing_attachment/odoo_addons/__init__.py b/setup/mail_attach_existing_attachment/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/mail_attach_existing_attachment/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/mail_attach_existing_attachment/odoo_addons/mail_attach_existing_attachment b/setup/mail_attach_existing_attachment/odoo_addons/mail_attach_existing_attachment new file mode 120000 index 00000000..4e1c9305 --- /dev/null +++ b/setup/mail_attach_existing_attachment/odoo_addons/mail_attach_existing_attachment @@ -0,0 +1 @@ +../../../mail_attach_existing_attachment \ No newline at end of file diff --git a/setup/mail_attach_existing_attachment/setup.py b/setup/mail_attach_existing_attachment/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/mail_attach_existing_attachment/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)