From 71ba19ecd16436cfd56d42706980679623ba0b6c Mon Sep 17 00:00:00 2001 From: Luc De Meyer Date: Sat, 26 Nov 2022 16:49:32 +0100 Subject: [PATCH] [IMP] account_ebics_batch: black, isort, prettier --- account_ebics_batch/__manifest__.py | 2 +- setup/account_ebics_batch/odoo/addons/account_ebics_batch | 1 + setup/account_ebics_batch/setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 setup/account_ebics_batch/odoo/addons/account_ebics_batch create mode 100644 setup/account_ebics_batch/setup.py diff --git a/account_ebics_batch/__manifest__.py b/account_ebics_batch/__manifest__.py index b84f781..e9d2133 100644 --- a/account_ebics_batch/__manifest__.py +++ b/account_ebics_batch/__manifest__.py @@ -6,7 +6,7 @@ "version": "14.0.1.0.0", "license": "AGPL-3", "author": "Noviat", - "website": "http://www.noviat.com", + "website": "https://www.noviat.com", "category": "Accounting & Finance", "summary": "EBICS Files automated import and processing", "depends": ["account_ebics"], diff --git a/setup/account_ebics_batch/odoo/addons/account_ebics_batch b/setup/account_ebics_batch/odoo/addons/account_ebics_batch new file mode 120000 index 0000000..d1e7e96 --- /dev/null +++ b/setup/account_ebics_batch/odoo/addons/account_ebics_batch @@ -0,0 +1 @@ +../../../../account_ebics_batch \ No newline at end of file diff --git a/setup/account_ebics_batch/setup.py b/setup/account_ebics_batch/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/account_ebics_batch/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)