From 6760af410586d9e2890929479adaee68878449d8 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 23 Mar 2020 17:53:07 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/account_financial_report | 1 + setup/account_financial_report/setup.py | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 120000 setup/account_financial_report/odoo/addons/account_financial_report create mode 100644 setup/account_financial_report/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index f6ab2417..516cbb81 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -13.0.20200225.0 \ No newline at end of file +13.0.20200323.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 1ae23343..a545e16f 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ setuptools.setup( description="Meta package for oca-account-financial-reporting Odoo addons", version=version, install_requires=[ + 'odoo13-addon-account_financial_report', 'odoo13-addon-account_tax_balance', ], classifiers=[ diff --git a/setup/account_financial_report/odoo/addons/account_financial_report b/setup/account_financial_report/odoo/addons/account_financial_report new file mode 120000 index 00000000..925ce704 --- /dev/null +++ b/setup/account_financial_report/odoo/addons/account_financial_report @@ -0,0 +1 @@ +../../../../account_financial_report \ No newline at end of file diff --git a/setup/account_financial_report/setup.py b/setup/account_financial_report/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_financial_report/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)