From 1612512e9c2cb65ad00e4e626c3ebb40ae8204eb Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 23 Jan 2020 08:35:56 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/account_payment_partner | 1 + setup/account_payment_partner/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/account_payment_partner/odoo/addons/account_payment_partner create mode 100644 setup/account_payment_partner/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index d86d1e16d..8b522d4cb 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20191109.0 \ No newline at end of file +13.0.20200123.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 2ab799551..9b9c650e6 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo13-addon-account_payment_mode', + 'odoo13-addon-account_payment_partner', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/account_payment_partner/odoo/addons/account_payment_partner b/setup/account_payment_partner/odoo/addons/account_payment_partner new file mode 120000 index 000000000..912a8463a --- /dev/null +++ b/setup/account_payment_partner/odoo/addons/account_payment_partner @@ -0,0 +1 @@ +../../../../account_payment_partner \ No newline at end of file diff --git a/setup/account_payment_partner/setup.py b/setup/account_payment_partner/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_payment_partner/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)