mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
13 lines
238 B
Python
13 lines
238 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
setup_requires=['setuptools-odoo'],
|
|
odoo_addon={
|
|
'external_dependencies_override': {
|
|
'python': {
|
|
"bokeh": "bokeh==0.12.7",
|
|
}
|
|
},
|
|
},
|
|
)
|