mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-02 22:30:48 +00:00
first commit
This commit is contained in:
14
.venv/Lib/site-packages/jupyterlab_widgets/.gitignore
vendored
Normal file
14
.venv/Lib/site-packages/jupyterlab_widgets/.gitignore
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
*.suo
|
||||
*.user
|
||||
.DS_Store
|
||||
node_modules
|
||||
typings/tsd.d.ts
|
||||
npm-debug.log
|
||||
test/build
|
||||
test/coverage
|
||||
lib
|
||||
dist
|
||||
build
|
||||
docs
|
||||
example/*.js
|
||||
static/
|
19
.venv/Lib/site-packages/jupyterlab_widgets/__init__.py
Normal file
19
.venv/Lib/site-packages/jupyterlab_widgets/__init__.py
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
import json
|
||||
import os.path as osp
|
||||
|
||||
from ._version import __version__
|
||||
|
||||
HERE = osp.abspath(osp.dirname(__file__))
|
||||
|
||||
with open(osp.join(HERE, 'labextension', 'package.json')) as fid:
|
||||
data = json.load(fid)
|
||||
|
||||
def _jupyter_labextension_paths():
|
||||
return [{
|
||||
'src': 'labextension',
|
||||
'dest': data['name']
|
||||
}]
|
||||
|
||||
|
||||
|
6
.venv/Lib/site-packages/jupyterlab_widgets/_version.py
Normal file
6
.venv/Lib/site-packages/jupyterlab_widgets/_version.py
Normal file
@ -0,0 +1,6 @@
|
||||
version_info = (1, 1, 0, 'final', 0)
|
||||
|
||||
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
|
||||
|
||||
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
|
||||
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))
|
@ -0,0 +1,99 @@
|
||||
{
|
||||
"name": "@jupyter-widgets/jupyterlab-manager",
|
||||
"version": "3.1.0",
|
||||
"description": "The JupyterLab extension providing Jupyter widgets.",
|
||||
"keywords": [
|
||||
"jupyter",
|
||||
"jupyterlab",
|
||||
"jupyterlab notebook",
|
||||
"jupyterlab-extension"
|
||||
],
|
||||
"homepage": "https://github.com/jupyter-widgets/ipywidgets",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets"
|
||||
},
|
||||
"license": "BSD-3-Clause",
|
||||
"author": "Project Jupyter",
|
||||
"sideEffects": [
|
||||
"style/*.css"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"files": [
|
||||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
||||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
||||
"dist/*.js",
|
||||
"schema/*.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
|
||||
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
|
||||
"build:labextension": "jupyter labextension build .",
|
||||
"build:labextension:dev": "jupyter labextension build --development True .",
|
||||
"build:lib": "tsc",
|
||||
"clean": "jlpm run clean:lib",
|
||||
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
|
||||
"clean:labextension": "rimraf jupyterlab_widgets/labextension",
|
||||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
||||
"eslint": "eslint . --ext .ts,.tsx --fix",
|
||||
"eslint:check": "eslint . --ext .ts,.tsx",
|
||||
"install:extension": "jupyter labextension develop --overwrite .",
|
||||
"prepare": "jlpm run clean && jlpm run build:prod",
|
||||
"watch": "run-p watch:src watch:labextension",
|
||||
"watch:labextension": "jupyter labextension watch .",
|
||||
"watch:src": "tsc -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyter-widgets/base": "^4.1.0",
|
||||
"@jupyter-widgets/controls": "^3.1.0",
|
||||
"@jupyter-widgets/output": "^4.1.0",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/docregistry": "^3.0.0",
|
||||
"@jupyterlab/logconsole": "^3.0.0",
|
||||
"@jupyterlab/mainmenu": "^3.0.0",
|
||||
"@jupyterlab/nbformat": "^3.0.0",
|
||||
"@jupyterlab/notebook": "^3.0.0",
|
||||
"@jupyterlab/outputarea": "^3.0.0",
|
||||
"@jupyterlab/rendermime": "^3.0.0",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.0.0",
|
||||
"@jupyterlab/services": "^6.0.0",
|
||||
"@jupyterlab/settingregistry": "^3.0.0",
|
||||
"@lumino/algorithm": "^1.1.0",
|
||||
"@lumino/coreutils": "^1.3.0",
|
||||
"@lumino/disposable": "^1.1.1",
|
||||
"@lumino/messaging": "^1.2.1",
|
||||
"@lumino/properties": "^1.1.0",
|
||||
"@lumino/signaling": "^1.2.0",
|
||||
"@lumino/widgets": "^1.3.0",
|
||||
"@types/backbone": "^1.4.1",
|
||||
"jquery": "^3.1.1",
|
||||
"semver": "^6.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/builder": "^3.0.0",
|
||||
"@jupyterlab/cells": "^3.0.0",
|
||||
"@types/semver": "^6.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
||||
"@typescript-eslint/parser": "^2.27.0",
|
||||
"eslint": "^7.5.0",
|
||||
"eslint-config-prettier": "^6.10.1",
|
||||
"eslint-plugin-prettier": "^3.1.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^1.19.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"typescript": "~3.9.0"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"outputDir": "jupyterlab_widgets/labextension",
|
||||
"schemaDir": "./schema",
|
||||
"_build": {
|
||||
"load": "static/remoteEntry.3421943a0ce73f10909d.js",
|
||||
"extension": "./extension"
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "@jupyter-widgets/jupyterlab-manager",
|
||||
"version": "3.1.0",
|
||||
"description": "The JupyterLab extension providing Jupyter widgets.",
|
||||
"keywords": [
|
||||
"jupyter",
|
||||
"jupyterlab",
|
||||
"jupyterlab notebook",
|
||||
"jupyterlab-extension"
|
||||
],
|
||||
"homepage": "https://github.com/jupyter-widgets/ipywidgets",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets"
|
||||
},
|
||||
"license": "BSD-3-Clause",
|
||||
"author": "Project Jupyter",
|
||||
"sideEffects": [
|
||||
"style/*.css"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"files": [
|
||||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
||||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
||||
"dist/*.js",
|
||||
"schema/*.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
|
||||
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
|
||||
"build:labextension": "jupyter labextension build .",
|
||||
"build:labextension:dev": "jupyter labextension build --development True .",
|
||||
"build:lib": "tsc",
|
||||
"clean": "jlpm run clean:lib",
|
||||
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
|
||||
"clean:labextension": "rimraf jupyterlab_widgets/labextension",
|
||||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
||||
"eslint": "eslint . --ext .ts,.tsx --fix",
|
||||
"eslint:check": "eslint . --ext .ts,.tsx",
|
||||
"install:extension": "jupyter labextension develop --overwrite .",
|
||||
"prepare": "jlpm run clean && jlpm run build:prod",
|
||||
"watch": "run-p watch:src watch:labextension",
|
||||
"watch:labextension": "jupyter labextension watch .",
|
||||
"watch:src": "tsc -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyter-widgets/base": "^4.1.0",
|
||||
"@jupyter-widgets/controls": "^3.1.0",
|
||||
"@jupyter-widgets/output": "^4.1.0",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/docregistry": "^3.0.0",
|
||||
"@jupyterlab/logconsole": "^3.0.0",
|
||||
"@jupyterlab/mainmenu": "^3.0.0",
|
||||
"@jupyterlab/nbformat": "^3.0.0",
|
||||
"@jupyterlab/notebook": "^3.0.0",
|
||||
"@jupyterlab/outputarea": "^3.0.0",
|
||||
"@jupyterlab/rendermime": "^3.0.0",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.0.0",
|
||||
"@jupyterlab/services": "^6.0.0",
|
||||
"@jupyterlab/settingregistry": "^3.0.0",
|
||||
"@lumino/algorithm": "^1.1.0",
|
||||
"@lumino/coreutils": "^1.3.0",
|
||||
"@lumino/disposable": "^1.1.1",
|
||||
"@lumino/messaging": "^1.2.1",
|
||||
"@lumino/properties": "^1.1.0",
|
||||
"@lumino/signaling": "^1.2.0",
|
||||
"@lumino/widgets": "^1.3.0",
|
||||
"@types/backbone": "^1.4.1",
|
||||
"jquery": "^3.1.1",
|
||||
"semver": "^6.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/builder": "^3.0.0",
|
||||
"@jupyterlab/cells": "^3.0.0",
|
||||
"@types/semver": "^6.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
||||
"@typescript-eslint/parser": "^2.27.0",
|
||||
"eslint": "^7.5.0",
|
||||
"eslint-config-prettier": "^6.10.1",
|
||||
"eslint-plugin-prettier": "^3.1.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^1.19.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"typescript": "~3.9.0"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"outputDir": "jupyterlab_widgets/labextension",
|
||||
"schemaDir": "./schema"
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"title": "Jupyter Widgets",
|
||||
"description": "Jupyter widgets settings.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"saveState": {
|
||||
"type": "boolean",
|
||||
"title": "Save Jupyter widget state in notebooks",
|
||||
"description": "Automatically save Jupyter widget state when a notebook is saved.",
|
||||
"default": false
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
Reference in New Issue
Block a user