Moves jupyter extension to both bonobo.contrib.jupyter (for the jupyter widget) and to bonobo.plugins (for the executor-side plugin).

This commit is contained in:
Romain Dorgueil
2017-11-12 09:08:05 +01:00
parent 4bea3f7dad
commit d1481fbfe8
42 changed files with 183 additions and 128 deletions

View File

@ -18,9 +18,9 @@ python.setup(
data_files=[
(
'share/jupyter/nbextensions/bonobo-jupyter', [
'bonobo/ext/jupyter/static/extension.js',
'bonobo/ext/jupyter/static/index.js',
'bonobo/ext/jupyter/static/index.js.map',
'bonobo/contrib/jupyter/static/extension.js',
'bonobo/contrib/jupyter/static/index.js',
'bonobo/contrib/jupyter/static/index.js.map',
]
),
],
@ -41,23 +41,24 @@ python.setup(
python.add_requirements(
'fs >=2.0,<2.1',
'jinja2 >=2.9,<2.10',
'graphviz >=0.8,<0.9',
'jinja2 >=2.9,<3',
'mondrian >=0.4,<0.5',
'packaging >=16,<17',
'psutil >=5.4,<6.0',
'requests >=2.0,<3.0',
'psutil >=5.4,<6',
'requests >=2,<3',
'stevedore >=1.27,<1.28',
'whistle >=1.0,<1.1',
dev=[
'pytest-sugar >=0.8,<0.9',
'pytest-sugar >=0.9,<0.10',
'pytest-timeout >=1,<2',
],
docker=[
'bonobo-docker >=0.5.0',
],
jupyter=[
'jupyter >=1.0,<1.1',
'ipywidgets >=6.0.0,<7',
'jupyter >=1.0,<1.1',
],
sqlalchemy=[
'bonobo-sqlalchemy >=0.5.1',
@ -66,6 +67,6 @@ python.add_requirements(
# Following requirements are not enforced, because some dependencies enforce them so we don't want to break
# the packaging in case it changes in dep.
python.add_requirements('colorama >=0.3', )
python.add_requirements('colorama >=0.3')
# vim: ft=python: