diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 55ebcc4e..09e97575 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180710.0 \ No newline at end of file +11.0.20180718.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 71d856de..bf75da3a 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo11-addon-document_page', 'odoo11-addon-document_page_approval', + 'odoo11-addon-document_url', 'odoo11-addon-knowledge', ], classifiers=[ diff --git a/setup/document_url/odoo/addons/document_url b/setup/document_url/odoo/addons/document_url new file mode 120000 index 00000000..30dc5806 --- /dev/null +++ b/setup/document_url/odoo/addons/document_url @@ -0,0 +1 @@ +../../../../document_url \ No newline at end of file diff --git a/setup/document_url/setup.cfg b/setup/document_url/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/document_url/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/document_url/setup.py b/setup/document_url/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/document_url/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)