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, +)