From 4303e971326042cad10f6646b0120b30fd196d25 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 14 Nov 2018 16:23:42 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/privacy/odoo/addons/privacy | 1 + setup/privacy/setup.cfg | 2 ++ setup/privacy/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/privacy/odoo/addons/privacy create mode 100644 setup/privacy/setup.cfg create mode 100644 setup/privacy/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 97490a2..c9489c9 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20181025.0 \ No newline at end of file +11.0.20181114.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 4e1751b..c3aafc0 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo11-addon-contact_search_form', + 'odoo11-addon-privacy', 'odoo11-addon-website_contact_extend', ], classifiers=[ diff --git a/setup/privacy/odoo/addons/privacy b/setup/privacy/odoo/addons/privacy new file mode 120000 index 0000000..babb15b --- /dev/null +++ b/setup/privacy/odoo/addons/privacy @@ -0,0 +1 @@ +../../../../privacy \ No newline at end of file diff --git a/setup/privacy/setup.cfg b/setup/privacy/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup/privacy/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/privacy/setup.py b/setup/privacy/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/privacy/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)