From c1bc0c4b6150c5bbe7c34d578f172b28616fa4b2 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Oct 2018 15:13:22 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/account_skip_bank_reconciliation | 1 + setup/account_skip_bank_reconciliation/setup.cfg | 2 ++ setup/account_skip_bank_reconciliation/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/account_skip_bank_reconciliation/odoo/addons/account_skip_bank_reconciliation create mode 100644 setup/account_skip_bank_reconciliation/setup.cfg create mode 100644 setup/account_skip_bank_reconciliation/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index dbe9bfc7..1e864f5e 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20181029.0 \ No newline at end of file +11.0.20181029.1 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index d2ccd528..1d98706a 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -12,6 +12,7 @@ setuptools.setup( 'odoo11-addon-account_mass_reconcile_by_purchase_line', 'odoo11-addon-account_mass_reconcile_transaction_ref', 'odoo11-addon-account_set_reconcilable', + 'odoo11-addon-account_skip_bank_reconciliation', 'odoo11-addon-bank_statement_foreign_currency', 'odoo11-addon-base_transaction_id', ], diff --git a/setup/account_skip_bank_reconciliation/odoo/addons/account_skip_bank_reconciliation b/setup/account_skip_bank_reconciliation/odoo/addons/account_skip_bank_reconciliation new file mode 120000 index 00000000..5c95e6cc --- /dev/null +++ b/setup/account_skip_bank_reconciliation/odoo/addons/account_skip_bank_reconciliation @@ -0,0 +1 @@ +../../../../account_skip_bank_reconciliation \ No newline at end of file diff --git a/setup/account_skip_bank_reconciliation/setup.cfg b/setup/account_skip_bank_reconciliation/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/account_skip_bank_reconciliation/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_skip_bank_reconciliation/setup.py b/setup/account_skip_bank_reconciliation/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_skip_bank_reconciliation/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)