From cbb2fe01628845f130fa1a4512ec442d6f4489cf Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 24 Jul 2019 09:48:26 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/account_reconcile_restrict_partner_mismatch | 1 + setup/account_reconcile_restrict_partner_mismatch/setup.cfg | 2 ++ setup/account_reconcile_restrict_partner_mismatch/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch create mode 100644 setup/account_reconcile_restrict_partner_mismatch/setup.cfg create mode 100644 setup/account_reconcile_restrict_partner_mismatch/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 9ce79871d3..8ed683b06c 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20190723.0 \ No newline at end of file +11.0.20190724.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index cfc18ef82e..a04da5ba05 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -13,6 +13,7 @@ 'odoo11-addon-account_mass_reconcile_by_purchase_line', 'odoo11-addon-account_mass_reconcile_ref_deep_search', 'odoo11-addon-account_mass_reconcile_transaction_ref', + 'odoo11-addon-account_reconcile_restrict_partner_mismatch', 'odoo11-addon-account_reconcile_rule', 'odoo11-addon-account_set_reconcilable', 'odoo11-addon-account_skip_bank_reconciliation', diff --git a/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch b/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch new file mode 120000 index 0000000000..a6e2aa0cc7 --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch @@ -0,0 +1 @@ +../../../../account_reconcile_restrict_partner_mismatch \ No newline at end of file diff --git a/setup/account_reconcile_restrict_partner_mismatch/setup.cfg b/setup/account_reconcile_restrict_partner_mismatch/setup.cfg new file mode 100644 index 0000000000..3c6e79cf31 --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_reconcile_restrict_partner_mismatch/setup.py b/setup/account_reconcile_restrict_partner_mismatch/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)