From 1659ecb9c8b4b64852faa1d27e4a192bb9036e63 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 9 Aug 2018 04:46:46 +0200 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/privacy_consent/odoo/__init__.py | 1 + setup/privacy_consent/odoo/addons/__init__.py | 1 + setup/privacy_consent/odoo/addons/privacy_consent | 1 + setup/privacy_consent/setup.py | 6 ++++++ 6 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 setup/privacy_consent/odoo/__init__.py create mode 100644 setup/privacy_consent/odoo/addons/__init__.py create mode 120000 setup/privacy_consent/odoo/addons/privacy_consent create mode 100644 setup/privacy_consent/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 821bd8e..00c341b 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -10.0.20180621.0 \ No newline at end of file +10.0.20180809.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 226cd5a..5c4d816 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo10-addon-privacy', + 'odoo10-addon-privacy_consent', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/privacy_consent/odoo/__init__.py b/setup/privacy_consent/odoo/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/setup/privacy_consent/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/privacy_consent/odoo/addons/__init__.py b/setup/privacy_consent/odoo/addons/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/setup/privacy_consent/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) 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.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, +)