From 3b8e40eccc6542d51842e99f449e9810a3b4c0fb Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 13 Jun 2019 18:00:52 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/account_fiscal_position_vat_check | 1 + setup/account_fiscal_position_vat_check/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check create mode 100644 setup/account_fiscal_position_vat_check/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 125aa3936..a7c9e8c00 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -12.0.20190606.0 \ No newline at end of file +12.0.20190613.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index f141414df..5367a349b 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -12,6 +12,7 @@ setuptools.setup( 'odoo12-addon-account_chart_update', 'odoo12-addon-account_check_deposit', 'odoo12-addon-account_document_reversal', + 'odoo12-addon-account_fiscal_position_vat_check', 'odoo12-addon-account_fiscal_year', 'odoo12-addon-account_group_menu', 'odoo12-addon-account_invoice_constraint_chronology', diff --git a/setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check b/setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check new file mode 120000 index 000000000..bc7f615f3 --- /dev/null +++ b/setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check @@ -0,0 +1 @@ +../../../../account_fiscal_position_vat_check \ No newline at end of file diff --git a/setup/account_fiscal_position_vat_check/setup.py b/setup/account_fiscal_position_vat_check/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_fiscal_position_vat_check/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)