From 1b6a178af5249ad6a185ab5779116fec44191f40 Mon Sep 17 00:00:00 2001 From: PauBForgeFlow Date: Fri, 28 Jul 2023 11:19:40 +0200 Subject: [PATCH] [IMP] account_statement_import_online_ofx: pre-commit stuff --- requirements.txt | 1 + .../odoo/addons/account_statement_import_online_ofx | 1 + setup/account_statement_import_online_ofx/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 120000 setup/account_statement_import_online_ofx/odoo/addons/account_statement_import_online_ofx create mode 100644 setup/account_statement_import_online_ofx/setup.py diff --git a/requirements.txt b/requirements.txt index d3433a96..5225efd4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ chardet ofxparse xlrd +ofxtools diff --git a/setup/account_statement_import_online_ofx/odoo/addons/account_statement_import_online_ofx b/setup/account_statement_import_online_ofx/odoo/addons/account_statement_import_online_ofx new file mode 120000 index 00000000..0551abde --- /dev/null +++ b/setup/account_statement_import_online_ofx/odoo/addons/account_statement_import_online_ofx @@ -0,0 +1 @@ +../../../../account_statement_import_online_ofx \ No newline at end of file diff --git a/setup/account_statement_import_online_ofx/setup.py b/setup/account_statement_import_online_ofx/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_statement_import_online_ofx/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)