Adding all project files

This commit is contained in:
Martina Burlando 2025-08-02 02:00:33 +02:00
parent 6c9e127bdc
commit cd4316ad0f
42289 changed files with 8009643 additions and 0 deletions

Binary file not shown.

View file

@ -0,0 +1,11 @@
def _jupyter_nbextension_paths():
"""Integrates Widget with a Jupyter notebook.
Required for building a widget. `See the Jupyter Notebook docs.`_
Users should not explicitly call this function.
_ https://testnb.readthedocs.io/en/latest/examples/Notebook/Distributing%20Jupyter%20Extensions%20as%20Python%20Packages.html#Defining-the-server-extension-and-nbextension
"""
return [
{"section": "notebook", "src": "nbextension/static", "dest": "pydeck", "require": "pydeck/extensionRequires"}
]

Binary file not shown.

View file

@ -0,0 +1,15 @@
/* eslint-disable */
define(function() {
'use strict';
requirejs.config({
map: {
'*': {
'@deck.gl/jupyter-widget': 'nbextensions/pydeck/index'
}
}
});
// Export the required load_ipython_extension function
return {
load_ipython_extension: function() {}
};
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long