From 22ba43008b040a4b6eceb297ad41ef4c5a5e5d98 Mon Sep 17 00:00:00 2001 From: Christopher Ormaza Date: Thu, 22 Jun 2023 12:10:58 -0500 Subject: [PATCH] [IMP] web_widget_mpld3_chart: black, isort, prettier --- requirements.txt | 2 ++ .../odoo/addons/web_widget_mpld3_chart | 1 + setup/web_widget_mpld3_chart/setup.py | 6 ++++++ 3 files changed, 9 insertions(+) create mode 120000 setup/web_widget_mpld3_chart/odoo/addons/web_widget_mpld3_chart create mode 100644 setup/web_widget_mpld3_chart/setup.py diff --git a/requirements.txt b/requirements.txt index 2c8daa179..fdefc2f76 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,5 @@ # generated from manifests external_dependencies +beautifulsoup4 bokeh==3.1.1 +mpld3==0.5.7 plotly==5.13.1 diff --git a/setup/web_widget_mpld3_chart/odoo/addons/web_widget_mpld3_chart b/setup/web_widget_mpld3_chart/odoo/addons/web_widget_mpld3_chart new file mode 120000 index 000000000..5b2ad03d2 --- /dev/null +++ b/setup/web_widget_mpld3_chart/odoo/addons/web_widget_mpld3_chart @@ -0,0 +1 @@ +../../../../web_widget_mpld3_chart \ No newline at end of file diff --git a/setup/web_widget_mpld3_chart/setup.py b/setup/web_widget_mpld3_chart/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_widget_mpld3_chart/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)