From 1176fd07f9b3d03d45d743919c27791a99419044 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 16 Oct 2018 12:14:01 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/base_location/odoo/addons/base_location | 1 + setup/base_location/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/base_location/odoo/addons/base_location create mode 100644 setup/base_location/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 85c490b63..9d7b68132 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20181008.0 \ No newline at end of file +12.0.20181016.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 970fd3668..2e62d9b7b 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ setuptools.setup( description="Meta package for oca-partner-contact Odoo addons", version=version, install_requires=[ + 'odoo12-addon-base_location', 'odoo12-addon-partner_fax', ], classifiers=[ diff --git a/setup/base_location/odoo/addons/base_location b/setup/base_location/odoo/addons/base_location new file mode 120000 index 000000000..841d7b5a7 --- /dev/null +++ b/setup/base_location/odoo/addons/base_location @@ -0,0 +1 @@ +../../../../base_location \ No newline at end of file diff --git a/setup/base_location/setup.py b/setup/base_location/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/base_location/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)