From e02d8d26c0311da0cd026eb4d6f6f908a5660f18 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 1 Nov 2019 17:42:56 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/attachment_unindex_content | 1 + setup/attachment_unindex_content/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/attachment_unindex_content/odoo/addons/attachment_unindex_content create mode 100644 setup/attachment_unindex_content/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index ae04180a1..a1c433290 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20191015.0 \ No newline at end of file +12.0.20191101.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index a2e29999b..be6642169 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ setuptools.setup( description="Meta package for oca-server-tools Odoo addons", version=version, install_requires=[ + 'odoo12-addon-attachment_unindex_content', 'odoo12-addon-auditlog', 'odoo12-addon-auto_backup', 'odoo12-addon-base_cron_exclusion', diff --git a/setup/attachment_unindex_content/odoo/addons/attachment_unindex_content b/setup/attachment_unindex_content/odoo/addons/attachment_unindex_content new file mode 120000 index 000000000..7249e45e0 --- /dev/null +++ b/setup/attachment_unindex_content/odoo/addons/attachment_unindex_content @@ -0,0 +1 @@ +../../../../attachment_unindex_content \ No newline at end of file diff --git a/setup/attachment_unindex_content/setup.py b/setup/attachment_unindex_content/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/attachment_unindex_content/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)