diff --git a/jupyter-openbis-extension/__init__.py b/jupyter-openbis-extension/__init__.py
index 71545f84106992f2f36b0ecdf858f2408bf3e064..22b2aabac22028215549cb4634d33428f05c7124 100644
--- a/jupyter-openbis-extension/__init__.py
+++ b/jupyter-openbis-extension/__init__.py
@@ -1,7 +1,7 @@
 name = 'jupyter-openbis-extension.server'
 __author__ = 'Swen Vermeul'
 __email__ = 'swen@ethz.ch'
-__version__ = '0.0.1'
+__version__ = '0.0.2'
 
 def _jupyter_server_extension_paths():
     return [{
@@ -15,11 +15,11 @@ def _jupyter_nbextension_paths():
         'label': 'Jupyter openBIS extension',
         'section': "notebook",
     #    # the path relative to the `jupyter-openbis-extension` directory containing the JavaScript
-        'src': "nbextension",
+        'src': "static",
     #    # directory in the `nbextension/` namespace
-        'dest': "jupyter-openbis-extension",
+        'dest': "openbis",
         # _also_ in the `nbextension/` namespace
-        'require' : "jupyter-openbis-extension/dialog"
+        'require' : "openbis/dialog"
     }]
 
 def load_jupyter_server_extension(nbapp):