From 090503fffa06825168ab08a4f8b497ef9f7ca7e9 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 5 Jul 2019 09:26:10 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/privacy_consent/odoo/addons/privacy_consent | 1 + setup/privacy_consent/setup.cfg | 2 ++ setup/privacy_consent/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/privacy_consent/odoo/addons/privacy_consent create mode 100644 setup/privacy_consent/setup.cfg create mode 100644 setup/privacy_consent/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 3b091b2..27c495f 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20190321.0 \ No newline at end of file +11.0.20190705.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index becc6b2..16a1025 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -10,6 +10,7 @@ setuptools.setup( install_requires=[ 'odoo11-addon-contact_search_form', 'odoo11-addon-privacy', + 'odoo11-addon-privacy_consent', 'odoo11-addon-privacy_partner_report', 'odoo11-addon-website_contact_extend', ], diff --git a/setup/privacy_consent/odoo/addons/privacy_consent b/setup/privacy_consent/odoo/addons/privacy_consent new file mode 120000 index 0000000..f558b8c --- /dev/null +++ b/setup/privacy_consent/odoo/addons/privacy_consent @@ -0,0 +1 @@ +../../../../privacy_consent \ No newline at end of file diff --git a/setup/privacy_consent/setup.cfg b/setup/privacy_consent/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup/privacy_consent/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/privacy_consent/setup.py b/setup/privacy_consent/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/privacy_consent/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)