diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 09e97575..2e464c19 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180718.0 \ No newline at end of file +11.0.20181023.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index bf75da3a..64be9184 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ setuptools.setup( description="Meta package for oca-knowledge Odoo addons", version=version, install_requires=[ + 'odoo11-addon-attachment_preview', 'odoo11-addon-document_page', 'odoo11-addon-document_page_approval', 'odoo11-addon-document_url', diff --git a/setup/attachment_preview/odoo/addons/attachment_preview b/setup/attachment_preview/odoo/addons/attachment_preview new file mode 120000 index 00000000..491ac8db --- /dev/null +++ b/setup/attachment_preview/odoo/addons/attachment_preview @@ -0,0 +1 @@ +../../../../attachment_preview \ No newline at end of file diff --git a/setup/attachment_preview/setup.cfg b/setup/attachment_preview/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/attachment_preview/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/attachment_preview/setup.py b/setup/attachment_preview/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/attachment_preview/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)