@stlite/desktop 0.34.0 → 0.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/build/asset-manifest.json +3 -3
- package/build/electron/main.js +1 -0
- package/build/index.html +1 -1
- package/build/pyodide/pyodide.asm.js +3 -3
- package/build/pyodide/pyodide.asm.wasm +0 -0
- package/build/pyodide/pyodide.js +1 -1
- package/build/pyodide/python_stdlib.zip +0 -0
- package/build/pyodide/repodata.json +1 -1
- package/build/static/js/{7073.376b9d76.chunk.js → 7073.d0bf438f.chunk.js} +1 -1
- package/build/static/js/{main.1313208f.js → main.259af25f.js} +2 -2
- package/package.json +11 -6
- package/build/pyodide/pyodide.asm.data +0 -0
- package/build/pyodide/pyodide_py.tar +0 -0
- /package/build/static/js/{main.1313208f.js.LICENSE.txt → main.259af25f.js.LICENSE.txt} +0 -0
|
Binary file
|
package/build/pyodide/pyodide.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(global,factory){"object"==typeof exports&&"undefined"!=typeof module?factory(exports):"function"==typeof define&&define.amd?define(["exports"],factory):factory((global="undefined"!=typeof globalThis?globalThis:global||self).loadPyodide={})}(this,(function(exports){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var errorStackParser={exports:{}},stackframe={exports:{}};!function(module,exports){module.exports=function(){function _isNumber(n){return!isNaN(parseFloat(n))&&isFinite(n)}function _capitalize(str){return str.charAt(0).toUpperCase()+str.substring(1)}function _getter(p){return function(){return this[p]}}var booleanProps=["isConstructor","isEval","isNative","isToplevel"],numericProps=["columnNumber","lineNumber"],stringProps=["fileName","functionName","source"],arrayProps=["args"],objectProps=["evalOrigin"],props=booleanProps.concat(numericProps,stringProps,arrayProps,objectProps);function StackFrame(obj){if(obj)for(var i=0;i<props.length;i++)void 0!==obj[props[i]]&&this["set"+_capitalize(props[i])](obj[props[i]])}StackFrame.prototype={getArgs:function(){return this.args},setArgs:function(v){if("[object Array]"!==Object.prototype.toString.call(v))throw new TypeError("Args must be an Array");this.args=v},getEvalOrigin:function(){return this.evalOrigin},setEvalOrigin:function(v){if(v instanceof StackFrame)this.evalOrigin=v;else{if(!(v instanceof Object))throw new TypeError("Eval Origin must be an Object or StackFrame");this.evalOrigin=new StackFrame(v)}},toString:function(){var fileName=this.getFileName()||"",lineNumber=this.getLineNumber()||"",columnNumber=this.getColumnNumber()||"",functionName=this.getFunctionName()||"";return this.getIsEval()?fileName?"[eval] ("+fileName+":"+lineNumber+":"+columnNumber+")":"[eval]:"+lineNumber+":"+columnNumber:functionName?functionName+" ("+fileName+":"+lineNumber+":"+columnNumber+")":fileName+":"+lineNumber+":"+columnNumber}},StackFrame.fromString=function(str){var argsStartIndex=str.indexOf("("),argsEndIndex=str.lastIndexOf(")"),functionName=str.substring(0,argsStartIndex),args=str.substring(argsStartIndex+1,argsEndIndex).split(","),locationString=str.substring(argsEndIndex+1);if(0===locationString.indexOf("@"))var parts=/@(.+?)(?::(\d+))?(?::(\d+))?$/.exec(locationString,""),fileName=parts[1],lineNumber=parts[2],columnNumber=parts[3];return new StackFrame({functionName:functionName,args:args||void 0,fileName:fileName,lineNumber:lineNumber||void 0,columnNumber:columnNumber||void 0})};for(var i=0;i<booleanProps.length;i++)StackFrame.prototype["get"+_capitalize(booleanProps[i])]=_getter(booleanProps[i]),StackFrame.prototype["set"+_capitalize(booleanProps[i])]=function(p){return function(v){this[p]=Boolean(v)}}(booleanProps[i]);for(var j=0;j<numericProps.length;j++)StackFrame.prototype["get"+_capitalize(numericProps[j])]=_getter(numericProps[j]),StackFrame.prototype["set"+_capitalize(numericProps[j])]=function(p){return function(v){if(!_isNumber(v))throw new TypeError(p+" must be a Number");this[p]=Number(v)}}(numericProps[j]);for(var k=0;k<stringProps.length;k++)StackFrame.prototype["get"+_capitalize(stringProps[k])]=_getter(stringProps[k]),StackFrame.prototype["set"+_capitalize(stringProps[k])]=function(p){return function(v){this[p]=String(v)}}(stringProps[k]);return StackFrame}()}(stackframe),function(module,exports){var StackFrame,FIREFOX_SAFARI_STACK_REGEXP,CHROME_IE_STACK_REGEXP,SAFARI_NATIVE_CODE_REGEXP;module.exports=(StackFrame=stackframe.exports,FIREFOX_SAFARI_STACK_REGEXP=/(^|@)\S+:\d+/,CHROME_IE_STACK_REGEXP=/^\s*at .*(\S+:\d+|\(native\))/m,SAFARI_NATIVE_CODE_REGEXP=/^(eval@)?(\[native code])?$/,{parse:function(error){if(void 0!==error.stacktrace||void 0!==error["opera#sourceloc"])return this.parseOpera(error);if(error.stack&&error.stack.match(CHROME_IE_STACK_REGEXP))return this.parseV8OrIE(error);if(error.stack)return this.parseFFOrSafari(error);throw new Error("Cannot parse given Error object")},extractLocation:function(urlLike){if(-1===urlLike.indexOf(":"))return[urlLike];var parts=/(.+?)(?::(\d+))?(?::(\d+))?$/.exec(urlLike.replace(/[()]/g,""));return[parts[1],parts[2]||void 0,parts[3]||void 0]},parseV8OrIE:function(error){return error.stack.split("\n").filter((function(line){return!!line.match(CHROME_IE_STACK_REGEXP)}),this).map((function(line){line.indexOf("(eval ")>-1&&(line=line.replace(/eval code/g,"eval").replace(/(\(eval at [^()]*)|(,.*$)/g,""));var sanitizedLine=line.replace(/^\s+/,"").replace(/\(eval code/g,"(").replace(/^.*?\s+/,""),location=sanitizedLine.match(/ (\(.+\)$)/);sanitizedLine=location?sanitizedLine.replace(location[0],""):sanitizedLine;var locationParts=this.extractLocation(location?location[1]:sanitizedLine),functionName=location&&sanitizedLine||void 0,fileName=["eval","<anonymous>"].indexOf(locationParts[0])>-1?void 0:locationParts[0];return new StackFrame({functionName:functionName,fileName:fileName,lineNumber:locationParts[1],columnNumber:locationParts[2],source:line})}),this)},parseFFOrSafari:function(error){return error.stack.split("\n").filter((function(line){return!line.match(SAFARI_NATIVE_CODE_REGEXP)}),this).map((function(line){if(line.indexOf(" > eval")>-1&&(line=line.replace(/ line (\d+)(?: > eval line \d+)* > eval:\d+:\d+/g,":$1")),-1===line.indexOf("@")&&-1===line.indexOf(":"))return new StackFrame({functionName:line});var functionNameRegex=/((.*".+"[^@]*)?[^@]*)(?:@)/,matches=line.match(functionNameRegex),functionName=matches&&matches[1]?matches[1]:void 0,locationParts=this.extractLocation(line.replace(functionNameRegex,""));return new StackFrame({functionName:functionName,fileName:locationParts[0],lineNumber:locationParts[1],columnNumber:locationParts[2],source:line})}),this)},parseOpera:function(e){return!e.stacktrace||e.message.indexOf("\n")>-1&&e.message.split("\n").length>e.stacktrace.split("\n").length?this.parseOpera9(e):e.stack?this.parseOpera11(e):this.parseOpera10(e)},parseOpera9:function(e){for(var lineRE=/Line (\d+).*script (?:in )?(\S+)/i,lines=e.message.split("\n"),result=[],i=2,len=lines.length;i<len;i+=2){var match=lineRE.exec(lines[i]);match&&result.push(new StackFrame({fileName:match[2],lineNumber:match[1],source:lines[i]}))}return result},parseOpera10:function(e){for(var lineRE=/Line (\d+).*script (?:in )?(\S+)(?:: In function (\S+))?$/i,lines=e.stacktrace.split("\n"),result=[],i=0,len=lines.length;i<len;i+=2){var match=lineRE.exec(lines[i]);match&&result.push(new StackFrame({functionName:match[3]||void 0,fileName:match[2],lineNumber:match[1],source:lines[i]}))}return result},parseOpera11:function(error){return error.stack.split("\n").filter((function(line){return!!line.match(FIREFOX_SAFARI_STACK_REGEXP)&&!line.match(/^Error created at/)}),this).map((function(line){var argsRaw,tokens=line.split("@"),locationParts=this.extractLocation(tokens.pop()),functionCall=tokens.shift()||"",functionName=functionCall.replace(/<anonymous function(: (\w+))?>/,"$2").replace(/\([^)]*\)/g,"")||void 0;functionCall.match(/\(([^)]*)\)/)&&(argsRaw=functionCall.replace(/^[^(]+\(([^)]*)\)$/,"$1"));var args=void 0===argsRaw||"[arguments not available]"===argsRaw?void 0:argsRaw.split(",");return new StackFrame({functionName:functionName,args:args,fileName:locationParts[0],lineNumber:locationParts[1],columnNumber:locationParts[2],source:line})}),this)}})}(errorStackParser);var ErrorStackParser=errorStackParser.exports;const IN_NODE="undefined"!=typeof process&&process.release&&"node"===process.release.name&&void 0===process.browser;let nodeUrlMod,nodeFetch,nodePath,nodeVmMod,nodeFsPromisesMod,resolvePath,pathSep,loadBinaryFile,loadScript;if(resolvePath=IN_NODE?function(path,base){return nodePath.resolve(base||".",path)}:function(path,base){return void 0===base&&(base=location),new URL(path,base).toString()},IN_NODE||(pathSep="/"),loadBinaryFile=IN_NODE?async function(path,_file_sub_resource_hash){if(path.startsWith("file://")&&(path=path.slice("file://".length)),path.includes("://")){let response=await nodeFetch(path);if(!response.ok)throw new Error(`Failed to load '${path}': request failed.`);return new Uint8Array(await response.arrayBuffer())}{const data=await nodeFsPromisesMod.readFile(path);return new Uint8Array(data.buffer,data.byteOffset,data.byteLength)}}:async function(path,subResourceHash){const url=new URL(path,location);let options=subResourceHash?{integrity:subResourceHash}:{},response=await fetch(url,options);if(!response.ok)throw new Error(`Failed to load '${url}': request failed.`);return new Uint8Array(await response.arrayBuffer())},globalThis.document)loadScript=async url=>await import(/* webpackIgnore: true */url);else if(globalThis.importScripts)loadScript=async url=>{try{globalThis.importScripts(url)}catch(e){if(!(e instanceof TypeError))throw e;await import(/* webpackIgnore: true */url)}};else{if(!IN_NODE)throw new Error("Cannot determine runtime environment");loadScript=async function(url){url.startsWith("file://")&&(url=url.slice("file://".length));url.includes("://")?nodeVmMod.runInThisContext(await(await nodeFetch(url)).text()):await import(/* webpackIgnore: true */nodeUrlMod.pathToFileURL(url).href)}}function __values(o){var s="function"==typeof Symbol&&Symbol.iterator,m=s&&o[s],i=0;if(m)return m.call(o);if(o&&"number"==typeof o.length)return{next:function(){return o&&i>=o.length&&(o=void 0),{value:o&&o[i++],done:!o}}};throw new TypeError(s?"Object is not iterable.":"Symbol.iterator is not defined.")}function __asyncValues(o){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i,m=o[Symbol.asyncIterator];return m?m.call(o):(o=__values(o),i={},verb("next"),verb("throw"),verb("return"),i[Symbol.asyncIterator]=function(){return this},i);function verb(n){i[n]=o[n]&&function(v){return new Promise((function(resolve,reject){(function(resolve,reject,d,v){Promise.resolve(v).then((function(v){resolve({value:v,done:d})}),reject)})(resolve,reject,(v=o[n](v)).done,v.value)}))}}}const getFsHandles=async dirHandle=>{const handles=[];await async function collect(curDirHandle){var e_1,_a;try{for(var _c,_b=__asyncValues(curDirHandle.values());!(_c=await _b.next()).done;){const entry=_c.value;handles.push(entry),"directory"===entry.kind&&await collect(entry)}}catch(e_1_1){e_1={error:e_1_1}}finally{try{_c&&!_c.done&&(_a=_b.return)&&await _a.call(_b)}finally{if(e_1)throw e_1.error}}}(dirHandle);const result=new Map;result.set(".",dirHandle);for(const handle of handles){const relativePath=(await dirHandle.resolve(handle)).join("/");result.set(relativePath,handle)}return result};function finalizeBootstrap(API,config){API.runPythonInternal_dict=API._pyodide._base.eval_code("{}"),API.importlib=API.runPythonInternal("import importlib; importlib");let import_module=API.importlib.import_module;API.sys=import_module("sys"),API.sys.path.insert(0,config.homedir),API.os=import_module("os");let globals=API.runPythonInternal("import __main__; __main__.__dict__"),builtins=API.runPythonInternal("import builtins; builtins.__dict__");var builtins_dict;API.globals=(builtins_dict=builtins,new Proxy(globals,{get:(target,symbol)=>"get"===symbol?key=>{let result=target.get(key);return void 0===result&&(result=builtins_dict.get(key)),result}:"has"===symbol?key=>target.has(key)||builtins_dict.has(key):Reflect.get(target,symbol)}));let importhook=API._pyodide._importhook;importhook.register_js_finder(),importhook.register_js_module("js",config.jsglobals);let pyodide=API.makePublicAPI();return importhook.register_js_module("pyodide_js",pyodide),API.pyodide_py=import_module("pyodide"),API.pyodide_code=import_module("pyodide.code"),API.pyodide_ffi=import_module("pyodide.ffi"),API.package_loader=import_module("pyodide._package_loader"),API.sitepackages=API.package_loader.SITE_PACKAGES.__str__(),API.dsodir=API.package_loader.DSO_DIR.__str__(),API.defaultLdLibraryPath=[API.dsodir,API.sitepackages],API.os.environ.__setitem__("LD_LIBRARY_PATH",API.defaultLdLibraryPath.join(":")),pyodide.pyodide_py=API.pyodide_py,pyodide.globals=API.globals,pyodide}async function loadPyodide(options={}){await async function(){if(!IN_NODE)return;if(nodeUrlMod=(await import("url")).default,nodeFsPromisesMod=await import("fs/promises"),nodeFetch=globalThis.fetch?fetch:(await import("node-fetch")).default,nodeVmMod=(await import("vm")).default,nodePath=await import("path"),pathSep=nodePath.sep,"undefined"!=typeof require)return;const node_modules={fs:await import("fs"),crypto:await import("crypto"),ws:await import("ws"),child_process:await import("child_process")};globalThis.require=function(mod){return node_modules[mod]}}();let indexURL=options.indexURL||function(){if("string"==typeof __dirname)return __dirname;let err;try{throw new Error}catch(e){err=e}let fileName=ErrorStackParser.parse(err)[0].fileName;const indexOfLastSlash=fileName.lastIndexOf(pathSep);if(-1===indexOfLastSlash)throw new Error("Could not extract indexURL path from pyodide module location");return fileName.slice(0,indexOfLastSlash)}();indexURL=resolvePath(indexURL),indexURL.endsWith("/")||(indexURL+="/"),options.indexURL=indexURL;const default_config={fullStdLib:!1,jsglobals:globalThis,stdin:globalThis.prompt?globalThis.prompt:void 0,homedir:"/home/pyodide",lockFileURL:indexURL+"repodata.json",args:[],_node_mounts:[]},config=Object.assign(default_config,options),pyodide_py_tar_promise=loadBinaryFile(config.indexURL+"pyodide_py.tar"),Module=function(){let Module={noImageDecoding:!0,noAudioDecoding:!0,noWasmDecoding:!1,preRun:[],quit:(status,toThrow)=>{throw Module.exited={status:status,toThrow:toThrow},toThrow}};return Module}();Module.print=config.stdout,Module.printErr=config.stderr,Module.preRun.push((()=>{for(const mount of config._node_mounts)Module.FS.mkdirTree(mount),Module.FS.mount(Module.NODEFS,{root:mount},mount)})),Module.arguments=config.args;const API={config:config};Module.API=API,function(Module,path){Module.preRun.push((function(){try{Module.FS.mkdirTree(path)}catch(e){console.error(`Error occurred while making a home directory '${path}':`),console.error(e),console.error("Using '/' for a home directory instead"),path="/"}Module.ENV.HOME=path,Module.FS.chdir(path)}))}(Module,config.homedir);const moduleLoaded=new Promise((r=>Module.postRun=r));if(Module.locateFile=path=>config.indexURL+path,"function"!=typeof _createPyodideModule){const scriptSrc=`${config.indexURL}pyodide.asm.js`;await loadScript(scriptSrc)}if(await _createPyodideModule(Module),await moduleLoaded,Module.exited)throw Module.exited.toThrow;if("0.22.1"!==API.version)throw new Error(`Pyodide version does not match: '0.22.1' <==> '${API.version}'. If you updated the Pyodide version, make sure you also updated the 'indexURL' parameter passed to loadPyodide.`);Module.locateFile=path=>{throw new Error("Didn't expect to load any more file_packager files!")},function(module){const FS=module.FS,MEMFS=module.FS.filesystems.MEMFS,PATH=module.PATH,nativeFSAsync={DIR_MODE:16895,FILE_MODE:33279,mount:function(mount){if(!mount.opts.fileSystemHandle)throw new Error("opts.fileSystemHandle is required");return MEMFS.mount.apply(null,arguments)},syncfs:async(mount,populate,callback)=>{try{const local=nativeFSAsync.getLocalSet(mount),remote=await nativeFSAsync.getRemoteSet(mount),src=populate?remote:local,dst=populate?local:remote;await nativeFSAsync.reconcile(mount,src,dst),callback(null)}catch(e){callback(e)}},getLocalSet:mount=>{let entries=Object.create(null);function isRealDir(p){return"."!==p&&".."!==p}function toAbsolute(root){return p=>PATH.join2(root,p)}let check=FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint));for(;check.length;){let path=check.pop(),stat=FS.stat(path);FS.isDir(stat.mode)&&check.push.apply(check,FS.readdir(path).filter(isRealDir).map(toAbsolute(path))),entries[path]={timestamp:stat.mtime,mode:stat.mode}}return{type:"local",entries:entries}},getRemoteSet:async mount=>{const entries=Object.create(null),handles=await getFsHandles(mount.opts.fileSystemHandle);for(const[path,handle]of handles)"."!==path&&(entries[PATH.join2(mount.mountpoint,path)]={timestamp:"file"===handle.kind?(await handle.getFile()).lastModifiedDate:new Date,mode:"file"===handle.kind?nativeFSAsync.FILE_MODE:nativeFSAsync.DIR_MODE});return{type:"remote",entries:entries,handles:handles}},loadLocalEntry:path=>{const node=FS.lookupPath(path).node,stat=FS.stat(path);if(FS.isDir(stat.mode))return{timestamp:stat.mtime,mode:stat.mode};if(FS.isFile(stat.mode))return node.contents=MEMFS.getFileDataAsTypedArray(node),{timestamp:stat.mtime,mode:stat.mode,contents:node.contents};throw new Error("node type not supported")},storeLocalEntry:(path,entry)=>{if(FS.isDir(entry.mode))FS.mkdirTree(path,entry.mode);else{if(!FS.isFile(entry.mode))throw new Error("node type not supported");FS.writeFile(path,entry.contents,{canOwn:!0})}FS.chmod(path,entry.mode),FS.utime(path,entry.timestamp,entry.timestamp)},removeLocalEntry:path=>{var stat=FS.stat(path);FS.isDir(stat.mode)?FS.rmdir(path):FS.isFile(stat.mode)&&FS.unlink(path)},loadRemoteEntry:async handle=>{if("file"===handle.kind){const file=await handle.getFile();return{contents:new Uint8Array(await file.arrayBuffer()),mode:nativeFSAsync.FILE_MODE,timestamp:file.lastModifiedDate}}if("directory"===handle.kind)return{mode:nativeFSAsync.DIR_MODE,timestamp:new Date};throw new Error("unknown kind: "+handle.kind)},storeRemoteEntry:async(handles,path,entry)=>{const parentDirHandle=handles.get(PATH.dirname(path)),handle=FS.isFile(entry.mode)?await parentDirHandle.getFileHandle(PATH.basename(path),{create:!0}):await parentDirHandle.getDirectoryHandle(PATH.basename(path),{create:!0});if("file"===handle.kind){const writable=await handle.createWritable();await writable.write(entry.contents),await writable.close()}handles.set(path,handle)},removeRemoteEntry:async(handles,path)=>{const parentDirHandle=handles.get(PATH.dirname(path));await parentDirHandle.removeEntry(PATH.basename(path)),handles.delete(path)},reconcile:async(mount,src,dst)=>{let total=0;const create=[];Object.keys(src.entries).forEach((function(key){const e=src.entries[key],e2=dst.entries[key];(!e2||FS.isFile(e.mode)&&e.timestamp.getTime()>e2.timestamp.getTime())&&(create.push(key),total++)})),create.sort();const remove=[];if(Object.keys(dst.entries).forEach((function(key){src.entries[key]||(remove.push(key),total++)})),remove.sort().reverse(),!total)return;const handles="remote"===src.type?src.handles:dst.handles;for(const path of create){const relPath=PATH.normalize(path.replace(mount.mountpoint,"/")).substring(1);if("local"===dst.type){const handle=handles.get(relPath),entry=await nativeFSAsync.loadRemoteEntry(handle);nativeFSAsync.storeLocalEntry(path,entry)}else{const entry=nativeFSAsync.loadLocalEntry(path);await nativeFSAsync.storeRemoteEntry(handles,relPath,entry)}}for(const path of remove)if("local"===dst.type)nativeFSAsync.removeLocalEntry(path);else{const relPath=PATH.normalize(path.replace(mount.mountpoint,"/")).substring(1);await nativeFSAsync.removeRemoteEntry(handles,relPath)}}};module.FS.filesystems.NATIVEFS_ASYNC=nativeFSAsync}(Module);const pyodide_py_tar=await pyodide_py_tar_promise;!function(Module,pyodide_py_tar){let stream=Module.FS.open("/pyodide_py.tar","w");Module.FS.write(stream,pyodide_py_tar,0,pyodide_py_tar.byteLength,void 0,!0),Module.FS.close(stream);let[errcode,captured_stderr]=Module.API.rawRun('\nfrom sys import version_info\npyversion = f"python{version_info.major}.{version_info.minor}"\nimport shutil\nshutil.unpack_archive("/pyodide_py.tar", f"/lib/{pyversion}/")\ndel shutil\nimport importlib\nimportlib.invalidate_caches()\ndel importlib\n');errcode&&Module.API.fatal_loading_error("Failed to unpack standard library.\n",captured_stderr),Module.FS.unlink("/pyodide_py.tar")}(Module,pyodide_py_tar);let[err,captured_stderr]=API.rawRun("import _pyodide_core");err&&Module.API.fatal_loading_error("Failed to import _pyodide_core\n",captured_stderr);const pyodide=finalizeBootstrap(API,config);if(pyodide.version.includes("dev")||API.setCdnUrl(`https://cdn.jsdelivr.net/pyodide/v${pyodide.version}/full/`),await API.packageIndexReady,API._pyodide._importhook.register_module_not_found_hook(API._import_name_to_package_name),"0.22.1"!==API.repodata_info.version)throw new Error("Lock file version doesn't match Pyodide version");return API.package_loader.init_loaded_packages(),config.fullStdLib&&await pyodide.loadPackage(API._pyodide._importhook.UNVENDORED_STDLIBS),API.initializeStreams(config.stdin,config.stdout,config.stderr),pyodide}globalThis.loadPyodide=loadPyodide,exports.loadPyodide=loadPyodide,exports.version="0.22.1",Object.defineProperty(exports,"__esModule",{value:!0})}));
|
|
1
|
+
!function(global,factory){"object"==typeof exports&&"undefined"!=typeof module?factory(exports):"function"==typeof define&&define.amd?define(["exports"],factory):factory((global="undefined"!=typeof globalThis?globalThis:global||self).loadPyodide={})}(this,(function(exports){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var errorStackParser={exports:{}},stackframe={exports:{}};!function(module,exports){module.exports=function(){function _isNumber(n){return!isNaN(parseFloat(n))&&isFinite(n)}function _capitalize(str){return str.charAt(0).toUpperCase()+str.substring(1)}function _getter(p){return function(){return this[p]}}var booleanProps=["isConstructor","isEval","isNative","isToplevel"],numericProps=["columnNumber","lineNumber"],stringProps=["fileName","functionName","source"],arrayProps=["args"],objectProps=["evalOrigin"],props=booleanProps.concat(numericProps,stringProps,arrayProps,objectProps);function StackFrame(obj){if(obj)for(var i=0;i<props.length;i++)void 0!==obj[props[i]]&&this["set"+_capitalize(props[i])](obj[props[i]])}StackFrame.prototype={getArgs:function(){return this.args},setArgs:function(v){if("[object Array]"!==Object.prototype.toString.call(v))throw new TypeError("Args must be an Array");this.args=v},getEvalOrigin:function(){return this.evalOrigin},setEvalOrigin:function(v){if(v instanceof StackFrame)this.evalOrigin=v;else{if(!(v instanceof Object))throw new TypeError("Eval Origin must be an Object or StackFrame");this.evalOrigin=new StackFrame(v)}},toString:function(){var fileName=this.getFileName()||"",lineNumber=this.getLineNumber()||"",columnNumber=this.getColumnNumber()||"",functionName=this.getFunctionName()||"";return this.getIsEval()?fileName?"[eval] ("+fileName+":"+lineNumber+":"+columnNumber+")":"[eval]:"+lineNumber+":"+columnNumber:functionName?functionName+" ("+fileName+":"+lineNumber+":"+columnNumber+")":fileName+":"+lineNumber+":"+columnNumber}},StackFrame.fromString=function(str){var argsStartIndex=str.indexOf("("),argsEndIndex=str.lastIndexOf(")"),functionName=str.substring(0,argsStartIndex),args=str.substring(argsStartIndex+1,argsEndIndex).split(","),locationString=str.substring(argsEndIndex+1);if(0===locationString.indexOf("@"))var parts=/@(.+?)(?::(\d+))?(?::(\d+))?$/.exec(locationString,""),fileName=parts[1],lineNumber=parts[2],columnNumber=parts[3];return new StackFrame({functionName:functionName,args:args||void 0,fileName:fileName,lineNumber:lineNumber||void 0,columnNumber:columnNumber||void 0})};for(var i=0;i<booleanProps.length;i++)StackFrame.prototype["get"+_capitalize(booleanProps[i])]=_getter(booleanProps[i]),StackFrame.prototype["set"+_capitalize(booleanProps[i])]=function(p){return function(v){this[p]=Boolean(v)}}(booleanProps[i]);for(var j=0;j<numericProps.length;j++)StackFrame.prototype["get"+_capitalize(numericProps[j])]=_getter(numericProps[j]),StackFrame.prototype["set"+_capitalize(numericProps[j])]=function(p){return function(v){if(!_isNumber(v))throw new TypeError(p+" must be a Number");this[p]=Number(v)}}(numericProps[j]);for(var k=0;k<stringProps.length;k++)StackFrame.prototype["get"+_capitalize(stringProps[k])]=_getter(stringProps[k]),StackFrame.prototype["set"+_capitalize(stringProps[k])]=function(p){return function(v){this[p]=String(v)}}(stringProps[k]);return StackFrame}()}(stackframe),function(module,exports){var StackFrame,FIREFOX_SAFARI_STACK_REGEXP,CHROME_IE_STACK_REGEXP,SAFARI_NATIVE_CODE_REGEXP;module.exports=(StackFrame=stackframe.exports,FIREFOX_SAFARI_STACK_REGEXP=/(^|@)\S+:\d+/,CHROME_IE_STACK_REGEXP=/^\s*at .*(\S+:\d+|\(native\))/m,SAFARI_NATIVE_CODE_REGEXP=/^(eval@)?(\[native code])?$/,{parse:function(error){if(void 0!==error.stacktrace||void 0!==error["opera#sourceloc"])return this.parseOpera(error);if(error.stack&&error.stack.match(CHROME_IE_STACK_REGEXP))return this.parseV8OrIE(error);if(error.stack)return this.parseFFOrSafari(error);throw new Error("Cannot parse given Error object")},extractLocation:function(urlLike){if(-1===urlLike.indexOf(":"))return[urlLike];var parts=/(.+?)(?::(\d+))?(?::(\d+))?$/.exec(urlLike.replace(/[()]/g,""));return[parts[1],parts[2]||void 0,parts[3]||void 0]},parseV8OrIE:function(error){return error.stack.split("\n").filter((function(line){return!!line.match(CHROME_IE_STACK_REGEXP)}),this).map((function(line){line.indexOf("(eval ")>-1&&(line=line.replace(/eval code/g,"eval").replace(/(\(eval at [^()]*)|(,.*$)/g,""));var sanitizedLine=line.replace(/^\s+/,"").replace(/\(eval code/g,"(").replace(/^.*?\s+/,""),location=sanitizedLine.match(/ (\(.+\)$)/);sanitizedLine=location?sanitizedLine.replace(location[0],""):sanitizedLine;var locationParts=this.extractLocation(location?location[1]:sanitizedLine),functionName=location&&sanitizedLine||void 0,fileName=["eval","<anonymous>"].indexOf(locationParts[0])>-1?void 0:locationParts[0];return new StackFrame({functionName:functionName,fileName:fileName,lineNumber:locationParts[1],columnNumber:locationParts[2],source:line})}),this)},parseFFOrSafari:function(error){return error.stack.split("\n").filter((function(line){return!line.match(SAFARI_NATIVE_CODE_REGEXP)}),this).map((function(line){if(line.indexOf(" > eval")>-1&&(line=line.replace(/ line (\d+)(?: > eval line \d+)* > eval:\d+:\d+/g,":$1")),-1===line.indexOf("@")&&-1===line.indexOf(":"))return new StackFrame({functionName:line});var functionNameRegex=/((.*".+"[^@]*)?[^@]*)(?:@)/,matches=line.match(functionNameRegex),functionName=matches&&matches[1]?matches[1]:void 0,locationParts=this.extractLocation(line.replace(functionNameRegex,""));return new StackFrame({functionName:functionName,fileName:locationParts[0],lineNumber:locationParts[1],columnNumber:locationParts[2],source:line})}),this)},parseOpera:function(e){return!e.stacktrace||e.message.indexOf("\n")>-1&&e.message.split("\n").length>e.stacktrace.split("\n").length?this.parseOpera9(e):e.stack?this.parseOpera11(e):this.parseOpera10(e)},parseOpera9:function(e){for(var lineRE=/Line (\d+).*script (?:in )?(\S+)/i,lines=e.message.split("\n"),result=[],i=2,len=lines.length;i<len;i+=2){var match=lineRE.exec(lines[i]);match&&result.push(new StackFrame({fileName:match[2],lineNumber:match[1],source:lines[i]}))}return result},parseOpera10:function(e){for(var lineRE=/Line (\d+).*script (?:in )?(\S+)(?:: In function (\S+))?$/i,lines=e.stacktrace.split("\n"),result=[],i=0,len=lines.length;i<len;i+=2){var match=lineRE.exec(lines[i]);match&&result.push(new StackFrame({functionName:match[3]||void 0,fileName:match[2],lineNumber:match[1],source:lines[i]}))}return result},parseOpera11:function(error){return error.stack.split("\n").filter((function(line){return!!line.match(FIREFOX_SAFARI_STACK_REGEXP)&&!line.match(/^Error created at/)}),this).map((function(line){var argsRaw,tokens=line.split("@"),locationParts=this.extractLocation(tokens.pop()),functionCall=tokens.shift()||"",functionName=functionCall.replace(/<anonymous function(: (\w+))?>/,"$2").replace(/\([^)]*\)/g,"")||void 0;functionCall.match(/\(([^)]*)\)/)&&(argsRaw=functionCall.replace(/^[^(]+\(([^)]*)\)$/,"$1"));var args=void 0===argsRaw||"[arguments not available]"===argsRaw?void 0:argsRaw.split(",");return new StackFrame({functionName:functionName,args:args,fileName:locationParts[0],lineNumber:locationParts[1],columnNumber:locationParts[2],source:line})}),this)}})}(errorStackParser);var ErrorStackParser=errorStackParser.exports;const IN_NODE="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node&&void 0===process.browser;let nodeUrlMod,nodeFetch,nodePath,nodeVmMod,nodeFsPromisesMod,resolvePath,pathSep,loadBinaryFile,loadScript;if(resolvePath=IN_NODE?function(path,base){return nodePath.resolve(base||".",path)}:function(path,base){return void 0===base&&(base=location),new URL(path,base).toString()},IN_NODE||(pathSep="/"),loadBinaryFile=IN_NODE?async function(path,_file_sub_resource_hash){if(path.startsWith("file://")&&(path=path.slice("file://".length)),path.includes("://")){let response=await nodeFetch(path);if(!response.ok)throw new Error(`Failed to load '${path}': request failed.`);return new Uint8Array(await response.arrayBuffer())}{const data=await nodeFsPromisesMod.readFile(path);return new Uint8Array(data.buffer,data.byteOffset,data.byteLength)}}:async function(path,subResourceHash){const url=new URL(path,location);let options=subResourceHash?{integrity:subResourceHash}:{},response=await fetch(url,options);if(!response.ok)throw new Error(`Failed to load '${url}': request failed.`);return new Uint8Array(await response.arrayBuffer())},globalThis.document)loadScript=async url=>await import(/* webpackIgnore: true */url);else if(globalThis.importScripts)loadScript=async url=>{try{globalThis.importScripts(url)}catch(e){if(!(e instanceof TypeError))throw e;await import(/* webpackIgnore: true */url)}};else{if(!IN_NODE)throw new Error("Cannot determine runtime environment");loadScript=async function(url){url.startsWith("file://")&&(url=url.slice("file://".length));url.includes("://")?nodeVmMod.runInThisContext(await(await nodeFetch(url)).text()):await import(/* webpackIgnore: true */nodeUrlMod.pathToFileURL(url).href)}}function __values(o){var s="function"==typeof Symbol&&Symbol.iterator,m=s&&o[s],i=0;if(m)return m.call(o);if(o&&"number"==typeof o.length)return{next:function(){return o&&i>=o.length&&(o=void 0),{value:o&&o[i++],done:!o}}};throw new TypeError(s?"Object is not iterable.":"Symbol.iterator is not defined.")}function __asyncValues(o){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i,m=o[Symbol.asyncIterator];return m?m.call(o):(o=__values(o),i={},verb("next"),verb("throw"),verb("return"),i[Symbol.asyncIterator]=function(){return this},i);function verb(n){i[n]=o[n]&&function(v){return new Promise((function(resolve,reject){(function(resolve,reject,d,v){Promise.resolve(v).then((function(v){resolve({value:v,done:d})}),reject)})(resolve,reject,(v=o[n](v)).done,v.value)}))}}}const getFsHandles=async dirHandle=>{const handles=[];await async function collect(curDirHandle){var e_1,_a;try{for(var _c,_b=__asyncValues(curDirHandle.values());!(_c=await _b.next()).done;){const entry=_c.value;handles.push(entry),"directory"===entry.kind&&await collect(entry)}}catch(e_1_1){e_1={error:e_1_1}}finally{try{_c&&!_c.done&&(_a=_b.return)&&await _a.call(_b)}finally{if(e_1)throw e_1.error}}}(dirHandle);const result=new Map;result.set(".",dirHandle);for(const handle of handles){const relativePath=(await dirHandle.resolve(handle)).join("/");result.set(relativePath,handle)}return result};function initializeFileSystem(Module,config){let stdLibURL;stdLibURL=null!=config.stdLibURL?config.stdLibURL:config.indexURL+"python_stdlib.zip",function(Module,stdlibURL){const stdlibPromise=loadBinaryFile(stdlibURL);Module.preRun.push((()=>{const pymajor=Module._py_version_major(),pyminor=Module._py_version_minor();Module.FS.mkdirTree("/lib"),Module.FS.mkdirTree(`/lib/python${pymajor}.${pyminor}/site-packages`),Module.addRunDependency("install-stdlib"),stdlibPromise.then((stdlib=>{Module.FS.writeFile(`/lib/python${pymajor}${pyminor}.zip`,stdlib)})).catch((e=>{console.error("Error occurred while installing the standard library:"),console.error(e)})).finally((()=>{Module.removeRunDependency("install-stdlib")}))}))}(Module,stdLibURL),function(Module,path){Module.preRun.push((function(){try{Module.FS.mkdirTree(path)}catch(e){console.error(`Error occurred while making a home directory '${path}':`),console.error(e),console.error("Using '/' for a home directory instead"),path="/"}Module.ENV.HOME=path,Module.FS.chdir(path)}))}(Module,config.homedir),function(Module,mounts){Module.preRun.push((()=>{for(const mount of mounts)Module.FS.mkdirTree(mount),Module.FS.mount(Module.FS.filesystems.NODEFS,{root:mount},mount)}))}(Module,config._node_mounts),Module.preRun.push((()=>function(module){const FS=module.FS,MEMFS=module.FS.filesystems.MEMFS,PATH=module.PATH,nativeFSAsync={DIR_MODE:16895,FILE_MODE:33279,mount:function(mount){if(!mount.opts.fileSystemHandle)throw new Error("opts.fileSystemHandle is required");return MEMFS.mount.apply(null,arguments)},syncfs:async(mount,populate,callback)=>{try{const local=nativeFSAsync.getLocalSet(mount),remote=await nativeFSAsync.getRemoteSet(mount),src=populate?remote:local,dst=populate?local:remote;await nativeFSAsync.reconcile(mount,src,dst),callback(null)}catch(e){callback(e)}},getLocalSet:mount=>{let entries=Object.create(null);function isRealDir(p){return"."!==p&&".."!==p}function toAbsolute(root){return p=>PATH.join2(root,p)}let check=FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint));for(;check.length;){let path=check.pop(),stat=FS.stat(path);FS.isDir(stat.mode)&&check.push.apply(check,FS.readdir(path).filter(isRealDir).map(toAbsolute(path))),entries[path]={timestamp:stat.mtime,mode:stat.mode}}return{type:"local",entries:entries}},getRemoteSet:async mount=>{const entries=Object.create(null),handles=await getFsHandles(mount.opts.fileSystemHandle);for(const[path,handle]of handles)"."!==path&&(entries[PATH.join2(mount.mountpoint,path)]={timestamp:"file"===handle.kind?(await handle.getFile()).lastModifiedDate:new Date,mode:"file"===handle.kind?nativeFSAsync.FILE_MODE:nativeFSAsync.DIR_MODE});return{type:"remote",entries:entries,handles:handles}},loadLocalEntry:path=>{const node=FS.lookupPath(path).node,stat=FS.stat(path);if(FS.isDir(stat.mode))return{timestamp:stat.mtime,mode:stat.mode};if(FS.isFile(stat.mode))return node.contents=MEMFS.getFileDataAsTypedArray(node),{timestamp:stat.mtime,mode:stat.mode,contents:node.contents};throw new Error("node type not supported")},storeLocalEntry:(path,entry)=>{if(FS.isDir(entry.mode))FS.mkdirTree(path,entry.mode);else{if(!FS.isFile(entry.mode))throw new Error("node type not supported");FS.writeFile(path,entry.contents,{canOwn:!0})}FS.chmod(path,entry.mode),FS.utime(path,entry.timestamp,entry.timestamp)},removeLocalEntry:path=>{var stat=FS.stat(path);FS.isDir(stat.mode)?FS.rmdir(path):FS.isFile(stat.mode)&&FS.unlink(path)},loadRemoteEntry:async handle=>{if("file"===handle.kind){const file=await handle.getFile();return{contents:new Uint8Array(await file.arrayBuffer()),mode:nativeFSAsync.FILE_MODE,timestamp:file.lastModifiedDate}}if("directory"===handle.kind)return{mode:nativeFSAsync.DIR_MODE,timestamp:new Date};throw new Error("unknown kind: "+handle.kind)},storeRemoteEntry:async(handles,path,entry)=>{const parentDirHandle=handles.get(PATH.dirname(path)),handle=FS.isFile(entry.mode)?await parentDirHandle.getFileHandle(PATH.basename(path),{create:!0}):await parentDirHandle.getDirectoryHandle(PATH.basename(path),{create:!0});if("file"===handle.kind){const writable=await handle.createWritable();await writable.write(entry.contents),await writable.close()}handles.set(path,handle)},removeRemoteEntry:async(handles,path)=>{const parentDirHandle=handles.get(PATH.dirname(path));await parentDirHandle.removeEntry(PATH.basename(path)),handles.delete(path)},reconcile:async(mount,src,dst)=>{let total=0;const create=[];Object.keys(src.entries).forEach((function(key){const e=src.entries[key],e2=dst.entries[key];(!e2||FS.isFile(e.mode)&&e.timestamp.getTime()>e2.timestamp.getTime())&&(create.push(key),total++)})),create.sort();const remove=[];if(Object.keys(dst.entries).forEach((function(key){src.entries[key]||(remove.push(key),total++)})),remove.sort().reverse(),!total)return;const handles="remote"===src.type?src.handles:dst.handles;for(const path of create){const relPath=PATH.normalize(path.replace(mount.mountpoint,"/")).substring(1);if("local"===dst.type){const handle=handles.get(relPath),entry=await nativeFSAsync.loadRemoteEntry(handle);nativeFSAsync.storeLocalEntry(path,entry)}else{const entry=nativeFSAsync.loadLocalEntry(path);await nativeFSAsync.storeRemoteEntry(handles,relPath,entry)}}for(const path of remove)if("local"===dst.type)nativeFSAsync.removeLocalEntry(path);else{const relPath=PATH.normalize(path.replace(mount.mountpoint,"/")).substring(1);await nativeFSAsync.removeRemoteEntry(handles,relPath)}}};module.FS.filesystems.NATIVEFS_ASYNC=nativeFSAsync}(Module)))}function finalizeBootstrap(API,config){API.runPythonInternal_dict=API._pyodide._base.eval_code("{}"),API.importlib=API.runPythonInternal("import importlib; importlib");let import_module=API.importlib.import_module;API.sys=import_module("sys"),API.sys.path.insert(0,config.homedir),API.os=import_module("os");let globals=API.runPythonInternal("import __main__; __main__.__dict__"),builtins=API.runPythonInternal("import builtins; builtins.__dict__");var builtins_dict;API.globals=(builtins_dict=builtins,new Proxy(globals,{get:(target,symbol)=>"get"===symbol?key=>{let result=target.get(key);return void 0===result&&(result=builtins_dict.get(key)),result}:"has"===symbol?key=>target.has(key)||builtins_dict.has(key):Reflect.get(target,symbol)}));let importhook=API._pyodide._importhook;importhook.register_js_finder(),importhook.register_js_module("js",config.jsglobals);let pyodide=API.makePublicAPI();return importhook.register_js_module("pyodide_js",pyodide),API.pyodide_py=import_module("pyodide"),API.pyodide_code=import_module("pyodide.code"),API.pyodide_ffi=import_module("pyodide.ffi"),API.package_loader=import_module("pyodide._package_loader"),API.sitepackages=API.package_loader.SITE_PACKAGES.__str__(),API.dsodir=API.package_loader.DSO_DIR.__str__(),API.defaultLdLibraryPath=[API.dsodir,API.sitepackages],API.os.environ.__setitem__("LD_LIBRARY_PATH",API.defaultLdLibraryPath.join(":")),pyodide.pyodide_py=API.pyodide_py,pyodide.globals=API.globals,pyodide}async function loadPyodide(options={}){await async function(){if(!IN_NODE)return;if(nodeUrlMod=(await import("url")).default,nodeFsPromisesMod=await import("fs/promises"),nodeFetch=globalThis.fetch?fetch:(await import("node-fetch")).default,nodeVmMod=(await import("vm")).default,nodePath=await import("path"),pathSep=nodePath.sep,"undefined"!=typeof require)return;const node_modules={fs:await import("fs"),crypto:await import("crypto"),ws:await import("ws"),child_process:await import("child_process")};globalThis.require=function(mod){return node_modules[mod]}}();let indexURL=options.indexURL||function(){if("string"==typeof __dirname)return __dirname;let err;try{throw new Error}catch(e){err=e}let fileName=ErrorStackParser.parse(err)[0].fileName;const indexOfLastSlash=fileName.lastIndexOf(pathSep);if(-1===indexOfLastSlash)throw new Error("Could not extract indexURL path from pyodide module location");return fileName.slice(0,indexOfLastSlash)}();indexURL=resolvePath(indexURL),indexURL.endsWith("/")||(indexURL+="/"),options.indexURL=indexURL;const default_config={fullStdLib:!1,jsglobals:globalThis,stdin:globalThis.prompt?globalThis.prompt:void 0,homedir:"/home/pyodide",lockFileURL:indexURL+"repodata.json",args:[],_node_mounts:[]},config=Object.assign(default_config,options),Module=function(){let Module={noImageDecoding:!0,noAudioDecoding:!0,noWasmDecoding:!1,preRun:[],quit:(status,toThrow)=>{throw Module.exited={status:status,toThrow:toThrow},toThrow}};return Module}();Module.print=config.stdout,Module.printErr=config.stderr,Module.arguments=config.args;const API={config:config};Module.API=API,initializeFileSystem(Module,config);const moduleLoaded=new Promise((r=>Module.postRun=r));if(Module.locateFile=path=>config.indexURL+path,"function"!=typeof _createPyodideModule){const scriptSrc=`${config.indexURL}pyodide.asm.js`;await loadScript(scriptSrc)}if(await _createPyodideModule(Module),await moduleLoaded,Module.exited)throw Module.exited.toThrow;if("0.23.3"!==API.version)throw new Error(`Pyodide version does not match: '0.23.3' <==> '${API.version}'. If you updated the Pyodide version, make sure you also updated the 'indexURL' parameter passed to loadPyodide.`);Module.locateFile=path=>{throw new Error("Didn't expect to load any more file_packager files!")};let[err,captured_stderr]=API.rawRun("import _pyodide_core");err&&Module.API.fatal_loading_error("Failed to import _pyodide_core\n",captured_stderr);const pyodide=finalizeBootstrap(API,config);if(pyodide.version.includes("dev")||API.setCdnUrl(`https://cdn.jsdelivr.net/pyodide/v${pyodide.version}/full/`),await API.packageIndexReady,API._pyodide._importhook.register_module_not_found_hook(API._import_name_to_package_name,API.repodata_unvendored_stdlibs_and_test),"0.23.3"!==API.repodata_info.version)throw new Error("Lock file version doesn't match Pyodide version");return API.package_loader.init_loaded_packages(),config.fullStdLib&&await pyodide.loadPackage(API.repodata_unvendored_stdlibs),API.initializeStreams(config.stdin,config.stdout,config.stderr),pyodide}globalThis.loadPyodide=loadPyodide,exports.loadPyodide=loadPyodide,exports.version="0.23.3",Object.defineProperty(exports,"__esModule",{value:!0})}));
|
|
2
2
|
//# sourceMappingURL=pyodide.js.map
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"info": {"arch": "wasm32", "platform": "emscripten_3_1_27", "version": "0.22.1", "python": "3.10.2"}, "packages": {"asciitree": {"name": "asciitree", "version": "0.3.3", "file_name": "asciitree-0.3.3-py3-none-any.whl", "install_dir": "site", "sha256": "acd03ae5191c4c65a700a41d8b9e73df669f710652efdb809753e99a0f7d5adb", "imports": ["asciitree"], "depends": []}, "astropy": {"name": "astropy", "version": "5.2", "file_name": "astropy-5.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "74f7fd025a42f56d63b8abe55687bf9d4dac5fc4050969ce8a25dfd21c6a3950", "imports": ["astropy"], "depends": ["distutils", "packaging", "numpy", "pyerfa", "pyyaml"]}, "atomicwrites": {"name": "atomicwrites", "version": "1.4.1", "file_name": "atomicwrites-1.4.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "9717ab263ae5ca817b083ed6b35d32fcf2a027dea550d9a22ccea00fa329ea50", "imports": ["atomicwrites"], "depends": []}, "attrs": {"name": "attrs", "version": "22.1.0", "file_name": "attrs-22.1.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "b4662784ca3af455d350b41b6398c18c1e3cca23c2336759bd41753a2d43f546", "imports": ["attr", "attrs"], "depends": ["six"]}, "autograd": {"name": "autograd", "version": "1.5", "file_name": "autograd-1.5-py3-none-any.whl", "install_dir": "site", "sha256": "4678cf0bc24920aae2d72089b8d413b4f28e66834393fd0847e28d3ca9426480", "imports": ["autograd"], "depends": ["numpy", "future"], "unvendored_tests": true}, "autograd-tests": {"name": "autograd-tests", "version": "1.5", "depends": ["autograd"], "imports": [], "file_name": "autograd-tests.tar", "install_dir": "site", "sha256": "50c632ebc25e8c204b0ee57befa373ee7d1252a008600f5bc3acf6da3e8e245c"}, "bcrypt": {"name": "bcrypt", "version": "4.0.1", "file_name": "bcrypt-4.0.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "7ddf244fad1f431bf304e4302b8fd2655d48a54074a9655867bc8b96a76fe6a3", "imports": ["bcrypt"], "depends": []}, "beautifulsoup4": {"name": "beautifulsoup4", "version": "4.11.1", "file_name": "beautifulsoup4-4.11.1-py3-none-any.whl", "install_dir": "site", "sha256": "f2c3d5a4f108a5707b4cad6bda42dcb027c5ed9f338041e0e6d6ac6ef8994e60", "imports": ["bs4"], "depends": ["soupsieve"], "unvendored_tests": true}, "beautifulsoup4-tests": {"name": "beautifulsoup4-tests", "version": "4.11.1", "depends": ["beautifulsoup4"], "imports": [], "file_name": "beautifulsoup4-tests.tar", "install_dir": "site", "sha256": "6450f71b894dbad10769ef150b0bb0555e6e9bf2f2b07465a2db121bec9a7b48"}, "biopython": {"name": "biopython", "version": "1.80", "file_name": "biopython-1.80-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "11f6bf5e75eb8d47d5fed5249cbf9634db9fec27c48dd9ecf950a43e03132788", "imports": ["Bio", "BioSQL"], "depends": ["numpy"]}, "bitarray": {"name": "bitarray", "version": "2.6.0", "file_name": "bitarray-2.6.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "51f3da477a0002b1f2f39ce5c315910c7d2d97d0658660c441d4d8f021ebb766", "imports": ["bitarray"], "depends": [], "unvendored_tests": true}, "bitarray-tests": {"name": "bitarray-tests", "version": "2.6.0", "depends": ["bitarray"], "imports": [], "file_name": "bitarray-tests.tar", "install_dir": "site", "sha256": "f149d7c99d611a46fcaea45a6b5a71a8d10709ec8f35175084f77029b56642d7"}, "bleach": {"name": "bleach", "version": "5.0.1", "file_name": "bleach-5.0.1-py3-none-any.whl", "install_dir": "site", "sha256": "04497728cec44c6c1cd206fdf23bcdd370f04ccff6ba5a6a97b82e47efa9779b", "imports": ["bleach"], "depends": ["webencodings", "packaging", "six"]}, "bokeh": {"name": "bokeh", "version": "3.0.3", "file_name": "bokeh-3.0.3-py3-none-any.whl", "install_dir": "site", "sha256": "258fed4e99b5ff6e6f71adc167d78688c98ee7f242cce1cf0e1bb5c0e9bb090c", "imports": ["bokeh"], "depends": ["distutils", "numpy", "jinja2", "pillow", "python-dateutil", "six", "typing-extensions", "pyyaml"]}, "boost-histogram": {"name": "boost-histogram", "version": "1.3.2", "file_name": "boost_histogram-1.3.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "4477b70a91c3f4bd2e1302cf1e085ebace6b4da094da82be6b0f6e92da80c3e0", "imports": ["boost_histogram"], "depends": ["numpy"]}, "brotli": {"name": "brotli", "version": "1.0.9", "file_name": "Brotli-1.0.9-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "b3b8ccb9a53c60062712e9c21f06a1a69bec5d762b819015582818c9802a025a", "imports": ["brotli"], "depends": []}, "certifi": {"name": "certifi", "version": "2022.12.7", "file_name": "certifi-2022.12.7-py3-none-any.whl", "install_dir": "site", "sha256": "cc00aab8271a9a05c8ce867effce3f272a547abd0eee2b9f9d41cf62e64386a2", "imports": ["certifi"], "depends": []}, "cffi": {"name": "cffi", "version": "1.15.1", "file_name": "cffi-1.15.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "a85b9cf24cbd99871844eb26ca2c3d544e321706cd2d348f56f700af9a81755c", "imports": ["cffi"], "depends": ["pycparser"]}, "cffi_example": {"name": "cffi_example", "version": "0.1", "file_name": "cffi_example-0.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "9926a957d5a61302627b338afb392b825c3b0163dcfd743426f30799104c4278", "imports": ["cffi_example"], "depends": ["cffi"]}, "cftime": {"name": "cftime", "version": "1.6.2", "file_name": "cftime-1.6.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "8b0877e16215af45b6af1306e10fc85807d9c7751a3c4cc401c6d051e4e94f8c", "imports": ["cftime"], "depends": ["numpy"]}, "clapack": {"name": "CLAPACK", "version": "3.2.1", "file_name": "CLAPACK-3.2.1.zip", "install_dir": "dynlib", "sha256": "b60ccdc815c71da5435d843ed5aa6e9a58a22dc15adc2d83af1e6c0b82b7042d", "imports": [], "shared_library": true, "depends": []}, "click": {"name": "click", "version": "8.1.3", "file_name": "click-8.1.3-py3-none-any.whl", "install_dir": "site", "sha256": "e8ddf7fc8e57e2b7cf2bdfc16244591bebb0b5df9f4573d9c1204621d28f066b", "imports": ["click"], "depends": []}, "cligj": {"name": "cligj", "version": "0.7.2", "file_name": "cligj-0.7.2-py3-none-any.whl", "install_dir": "site", "sha256": "a6ea5a4832ea7d2800d60e07a175e5bad0db598f48573da07c90fb6611aa11fb", "imports": ["cligj"], "depends": ["click"]}, "cloudpickle": {"name": "cloudpickle", "version": "2.2.0", "file_name": "cloudpickle-2.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "1eb6aa50d4dd745120a1bd4750ca5e4eb7af3129f6b577c6f996ec83d077cf67", "imports": ["cloudpickle"], "depends": []}, "cmyt": {"name": "cmyt", "version": "1.1.2", "file_name": "cmyt-1.1.2-py3-none-any.whl", "install_dir": "site", "sha256": "dc36b177b6064705526775e0fac9a9646781a5ed690fcd381e08dd78b5a2e4cf", "imports": ["cmyt"], "depends": ["colorspacious", "matplotlib", "more-itertools", "numpy"], "unvendored_tests": true}, "cmyt-tests": {"name": "cmyt-tests", "version": "1.1.2", "depends": ["cmyt"], "imports": [], "file_name": "cmyt-tests.tar", "install_dir": "site", "sha256": "c4e9b9fc481ebcb493f3267d42f995624f579ed91a518237e557584bd1f7c718"}, "colorspacious": {"name": "colorspacious", "version": "1.1.2", "file_name": "colorspacious-1.1.2-py2.py3-none-any.whl", "install_dir": "site", "sha256": "77eb9a0edcf975b2f031595e1b1f42646b334d0e63530ebe616502af0f6c732f", "imports": ["colorspacious"], "depends": ["numpy"]}, "coverage": {"name": "coverage", "version": "6.5.0", "file_name": "coverage-6.5.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "5d40dad8837c033e52a2027fad6c800a1474c9b6d3197dc86a4db158547b1892", "imports": ["coverage"], "depends": ["sqlite3"]}, "cpp-exceptions-test": {"name": "cpp-exceptions-test", "version": "0.1", "file_name": "cpp-exceptions-test-0.1.zip", "install_dir": "dynlib", "sha256": "ea2e89fd7ea82bdd850062748b29fc055f17db0234aafee05394f956e9531bb2", "imports": [], "shared_library": true, "depends": []}, "cryptography": {"name": "cryptography", "version": "38.0.4", "file_name": "cryptography-38.0.4-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "c84cfae7337a31fe5d050780bb17c90470aaa3c26a1afb01d2a332372cf72763", "imports": ["cryptography"], "depends": ["openssl", "six", "cffi"]}, "cssselect": {"name": "cssselect", "version": "1.2.0", "file_name": "cssselect-1.2.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "b05bcbee5cae0bbc7431c5afc5c1fa13e64e64385a5263a302bda12bee9e8711", "imports": ["cssselect"], "depends": []}, "cycler": {"name": "cycler", "version": "0.11.0", "file_name": "cycler-0.11.0-py3-none-any.whl", "install_dir": "site", "sha256": "3ce62764e2e368e743a628db85d82271944aaeaf46a1b63c96fc8750bb9112fd", "imports": ["cycler"], "depends": ["six"]}, "cytoolz": {"name": "cytoolz", "version": "0.12.0", "file_name": "cytoolz-0.12.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "95a043ffeb82a0c582ddb119b832e161b648d27dbd715050d95ac0de91eba7a4", "imports": ["cytoolz"], "depends": ["nose", "toolz"], "unvendored_tests": true}, "cytoolz-tests": {"name": "cytoolz-tests", "version": "0.12.0", "depends": ["cytoolz"], "imports": [], "file_name": "cytoolz-tests.tar", "install_dir": "site", "sha256": "99284c3e66662eb26e42043f5303858b5dbaa96eeb41f6fe61900558540d84e6"}, "decorator": {"name": "decorator", "version": "5.1.1", "file_name": "decorator-5.1.1-py3-none-any.whl", "install_dir": "site", "sha256": "2da7f0d3c8a3f9f352a993a360f2e7ccef5666a62fc4aa870b9f451f75cd8493", "imports": ["decorator"], "depends": []}, "demes": {"name": "demes", "version": "0.2.2", "file_name": "demes-0.2.2-py3-none-any.whl", "install_dir": "site", "sha256": "54884aae3db03ed24d03e158d43a547e01bf06b5e43e27ffef81435ff2f2dffb", "imports": ["demes"], "depends": ["attrs", "ruamel.yaml"]}, "distlib": {"name": "distlib", "version": "0.3.6", "file_name": "distlib-0.3.6-py2.py3-none-any.whl", "install_dir": "site", "sha256": "abcb7e1bdb9a5c909a777f6b37276260856393d514780b0c79cb926866d4e161", "imports": ["distlib"], "depends": []}, "distutils": {"name": "distutils", "version": "1.0.0", "file_name": "distutils-1.0.0.zip", "install_dir": "stdlib", "sha256": "4768c0334da801957b602d990c2e3f12eeed0eb83341b17799fb8747e6fd92ec", "imports": ["distutils"], "shared_library": true, "depends": []}, "docutils": {"name": "docutils", "version": "0.19", "file_name": "docutils-0.19-py3-none-any.whl", "install_dir": "site", "sha256": "3f5fa3e2cc5e96048f779b2f07d7dfbd888a317186a9d0b0684ed283cc6ed051", "imports": ["docutils"], "depends": []}, "exceptiongroup": {"name": "exceptiongroup", "version": "1.0.4", "file_name": "exceptiongroup-1.0.4-py3-none-any.whl", "install_dir": "site", "sha256": "a9e968aa91222cc4b1abf2a4b8df5f28a0d5a3ce7b21a28559f4b93494a83cd1", "imports": ["exceptiongroup"], "depends": []}, "fiona": {"name": "fiona", "version": "1.8.22", "file_name": "Fiona-1.8.22-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "e04e79b30b003836f3fb9ae93e3e8866a6e8802bf6fc4a997c52369c74f2b0df", "imports": ["fiona"], "depends": ["attrs", "certifi", "setuptools", "six", "click", "cligj"]}, "fonttools": {"name": "fonttools", "version": "4.38.0", "file_name": "fonttools-4.38.0-py3-none-any.whl", "install_dir": "site", "sha256": "95aaa100a24a56965712316c1786bdfa6e58ea1599073871660649671083dcfc", "imports": ["fontTools"], "depends": []}, "fpcast-test": {"name": "fpcast-test", "version": "0.1", "file_name": "fpcast_test-0.1.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "72635f9444095a767d1fe8879fda4aa04bbb4a635486bbda2e809079db8c5922", "imports": ["fpcast_test"], "depends": []}, "freesasa": {"name": "freesasa", "version": "2.1.0", "file_name": "freesasa-2.1.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "c6b93537499e4e23cba06c5299ac5dc9af03e6ff73ad7261141c74145d95da57", "imports": ["freesasa"], "depends": []}, "future": {"name": "future", "version": "0.18.2", "file_name": "future-0.18.2-py3-none-any.whl", "install_dir": "site", "sha256": "9d3bbc13fbb6b9d29ca06ffe3f772ee9aaf0146714a86d6c5bc0689065e5e163", "imports": ["future"], "depends": [], "unvendored_tests": true}, "future-tests": {"name": "future-tests", "version": "0.18.2", "depends": ["future"], "imports": [], "file_name": "future-tests.tar", "install_dir": "site", "sha256": "8f2661a097ff40d3804a3a76abce5d44b6d6f6fac7c4bd7d401087b021c448be"}, "galpy": {"name": "galpy", "version": "1.8.1", "file_name": "galpy-1.8.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "f9169baabce785e06fa9c4ac87da93483320ef2b6f0b4abf37c6df8a7c4167a1", "imports": ["galpy"], "depends": ["numpy", "scipy", "matplotlib", "astropy", "future", "setuptools"]}, "gdal": {"name": "gdal", "version": "3.5.1", "file_name": "gdal-3.5.1.zip", "install_dir": "dynlib", "sha256": "a62ae5686644d67479fd56bcd05dacb28133a9bd1e93d9724a5d40dde5b6e501", "imports": [], "shared_library": true, "depends": ["geos"]}, "gensim": {"name": "gensim", "version": "4.3.0", "file_name": "gensim-4.3.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "cc21cc57777291ca9612d3f2469445d28ae4ac951bcdac42080e476e8dbc0a3e", "imports": ["gensim"], "depends": ["numpy", "scipy", "six", "smart_open"], "unvendored_tests": true}, "gensim-tests": {"name": "gensim-tests", "version": "4.3.0", "depends": ["gensim"], "imports": [], "file_name": "gensim-tests.tar", "install_dir": "site", "sha256": "e77e27591ea4073839fe8fcb787709c4b41fa8f434feb72fc38151c8dbb7aacd"}, "geopandas": {"name": "geopandas", "version": "0.12.2", "file_name": "geopandas-0.12.2-py3-none-any.whl", "install_dir": "site", "sha256": "c5f69ead745bdf6b964e8bff517e1138a0a2bf7a2678a15abf21b4c7c8809506", "imports": ["geopandas"], "depends": ["shapely", "fiona", "pyproj", "packaging", "pandas"], "unvendored_tests": true}, "geopandas-tests": {"name": "geopandas-tests", "version": "0.12.2", "depends": ["geopandas"], "imports": [], "file_name": "geopandas-tests.tar", "install_dir": "site", "sha256": "b6dd3f2ce55068980d932a7948d76ed940c1a8fcacedd565cf4bd58a55fc03f6"}, "geos": {"name": "geos", "version": "3.10.3", "file_name": "geos-3.10.3.zip", "install_dir": "dynlib", "sha256": "aef13007dac67781600fbd7b60dca000ca6ce7dab33df5d041f7b098ccd4ea36", "imports": [], "shared_library": true, "depends": []}, "gmpy2": {"name": "gmpy2", "version": "2.1.4", "file_name": "gmpy2-2.1.4-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "34c9a9724835a38448e996a2c269d47a1cbacc775891ea1c1016effc1179cd7d", "imports": ["gmpy2"], "depends": []}, "gsw": {"name": "gsw", "version": "3.6.16", "file_name": "gsw-3.6.16-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "d9a47e6b86605dd22173463ea1b3f4077296775008752392a4c9b31a8122e868", "imports": ["gsw"], "depends": ["numpy"], "unvendored_tests": true}, "gsw-tests": {"name": "gsw-tests", "version": "3.6.16", "depends": ["gsw"], "imports": [], "file_name": "gsw-tests.tar", "install_dir": "site", "sha256": "812a4299391496671b878d204b0234f7ba6486a2f6fdbab0ba6024e15b1759d9"}, "h5py": {"name": "h5py", "version": "3.7.0", "file_name": "h5py-3.7.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "e373de88de32b30a61f08943ea977f13accee4f4bffe3a24594404408b47dade", "imports": ["h5py"], "depends": ["numpy", "pkgconfig"], "unvendored_tests": true}, "h5py-tests": {"name": "h5py-tests", "version": "3.7.0", "depends": ["h5py"], "imports": [], "file_name": "h5py-tests.tar", "install_dir": "site", "sha256": "da0f135889f008018c333387635a31979d5ef79d6232e3ca3b5d4b5e96c5b9a7"}, "hashlib": {"name": "hashlib", "version": "1.0.0", "file_name": "hashlib-1.0.0.zip", "install_dir": "stdlib", "sha256": "b6276147ae83bd9c5567f608d8651a83854b54b2c6c9e1b28057a9de0f972548", "imports": ["_hashlib"], "shared_library": true, "depends": ["openssl"]}, "html5lib": {"name": "html5lib", "version": "1.1", "file_name": "html5lib-1.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "0405ced62db319b541b0f368ea981a9f7cb4fffd703ddf5f3e00a04dc2b77fa8", "imports": ["html5lib"], "depends": ["webencodings", "six"]}, "imageio": {"name": "imageio", "version": "2.22.4", "file_name": "imageio-2.22.4-py3-none-any.whl", "install_dir": "site", "sha256": "cb74588c4cf73dc131839d815b84374da4a6a1cb679a52409683b50d0396cf88", "imports": ["imageio"], "depends": ["numpy", "pillow"]}, "iniconfig": {"name": "iniconfig", "version": "1.1.1", "file_name": "iniconfig-1.1.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "ec1a5945d0d398a35accf724b6e367cb6e902b95a0e5e80e808851e261209533", "imports": ["iniconfig"], "depends": []}, "jedi": {"name": "jedi", "version": "0.18.2", "file_name": "jedi-0.18.2-py2.py3-none-any.whl", "install_dir": "site", "sha256": "6cc69321f80aaa6ad7d12e41f170131897ff2c26c2f7e6ac5cdae7121535b732", "imports": ["jedi"], "depends": ["parso"], "unvendored_tests": true}, "jedi-tests": {"name": "jedi-tests", "version": "0.18.2", "depends": ["jedi"], "imports": [], "file_name": "jedi-tests.tar", "install_dir": "site", "sha256": "0dd263b4959a5c686a1a21177673cb59c1730edca974c68b364cca14ecc50295"}, "jinja2": {"name": "Jinja2", "version": "3.1.2", "file_name": "Jinja2-3.1.2-py3-none-any.whl", "install_dir": "site", "sha256": "f3d672c452fac91a939ed14553616fc69deef8ebaf58bcb223f6aeb2b8bf26a2", "imports": ["jinja2"], "depends": ["markupsafe"]}, "joblib": {"name": "joblib", "version": "1.2.0", "file_name": "joblib-1.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "1d23748d195cc90e01732359185551c43799852001f237e4d9e84ffc126c69ba", "imports": ["joblib"], "depends": ["distutils"], "unvendored_tests": true}, "joblib-tests": {"name": "joblib-tests", "version": "1.2.0", "depends": ["joblib"], "imports": [], "file_name": "joblib-tests.tar", "install_dir": "site", "sha256": "73579f37978b9357f5abe42f7dd1f9a2311f267b6541507f95a5125dcfd70412"}, "jsonschema": {"name": "jsonschema", "version": "4.17.3", "file_name": "jsonschema-4.17.3-py3-none-any.whl", "install_dir": "site", "sha256": "051a1f7108e3bad4dd445b6d4b39ff1e1377612a1c6380b888d91211645bc751", "imports": ["jsonschema"], "depends": ["attrs", "pyrsistent"], "unvendored_tests": true}, "jsonschema-tests": {"name": "jsonschema-tests", "version": "4.17.3", "depends": ["jsonschema"], "imports": [], "file_name": "jsonschema-tests.tar", "install_dir": "site", "sha256": "d95d0bdbc5b4ee1fc0359b796e2d25436cfcd0d94d0ffb26afd339c5f93d164a"}, "kiwisolver": {"name": "kiwisolver", "version": "1.4.4", "file_name": "kiwisolver-1.4.4-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "79d7db93ec4b9d58afac31d706dfa656563fc53a2b044e8a00882ff953f99171", "imports": ["kiwisolver"], "depends": []}, "lazy-object-proxy": {"name": "lazy-object-proxy", "version": "1.8.0", "file_name": "lazy_object_proxy-1.8.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "086871ca7af90ef09342faa61bc9e256b018d23aa2a46502757fe390662e6d16", "imports": ["lazy_object_proxy"], "depends": []}, "libhdf5": {"name": "libhdf5", "version": "1.12.1", "file_name": "libhdf5-1.12.1.zip", "install_dir": "dynlib", "sha256": "b014988098b293b2ddfb8bf0a35c9a7f35f704847ab4e3dc9984e7953b8a610c", "imports": [], "shared_library": true, "depends": []}, "libheif": {"name": "libheif", "version": "1.12.0", "file_name": "libheif-1.12.0.zip", "install_dir": "dynlib", "sha256": "879d587c5fd3882df38cca3a8c93ca57ec9152cd3ea319b94431618545cee43d", "imports": [], "shared_library": true, "depends": []}, "libmagic": {"name": "libmagic", "version": "5.42", "file_name": "libmagic-5.42.zip", "install_dir": "dynlib", "sha256": "b19207f2ee7cb02fad5cda8eccb660e872d06e7fc57815070fc1770b2aa1a58f", "imports": [], "shared_library": true, "depends": []}, "lightgbm": {"name": "lightgbm", "version": "3.3.3", "file_name": "lightgbm-3.3.3-py3-none-any.whl", "install_dir": "site", "sha256": "8a204b3f7c76ee8ea404412c0f8be0224ea50e11b9c98b0151fcdd794f3ffb2a", "imports": ["lightgbm"], "depends": ["numpy", "scipy", "scikit-learn"]}, "logbook": {"name": "logbook", "version": "1.5.3", "file_name": "Logbook-1.5.3-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "5c62ebb835561d146d9b6031aea7907cf990385f3ea08f3fed073bb7ec37237e", "imports": ["logbook"], "depends": []}, "lxml": {"name": "lxml", "version": "4.9.2", "file_name": "lxml-4.9.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "134d3f2acb69732922f7729cf23c0b28274f1143374cbe021c0c85fc31afaebb", "imports": ["lxml"], "depends": []}, "lzma": {"name": "lzma", "version": "1.0.0", "file_name": "lzma-1.0.0.zip", "install_dir": "stdlib", "sha256": "993d29de14da5cd946171d40e792fd077035a50399adbeb1bf898b6ada651ce7", "imports": ["lzma", "_lzma"], "shared_library": true, "depends": []}, "markupsafe": {"name": "MarkupSafe", "version": "2.1.1", "file_name": "MarkupSafe-2.1.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "30812b005227bdc4122aae3cf0bc64530e9db0c34ffbe4e96b6bd1130ebace30", "imports": ["markupsafe"], "depends": []}, "matplotlib": {"name": "matplotlib", "version": "3.5.2", "file_name": "matplotlib-3.5.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "f37a01aaab8163de474611074ecb898fa3a2656cab06c3f63a9d2d7b31fdbdda", "imports": ["pylab", "mpl_toolkits", "matplotlib"], "depends": ["cycler", "distutils", "fonttools", "kiwisolver", "numpy", "packaging", "pillow", "pyparsing", "python-dateutil", "pytz", "matplotlib-pyodide"], "unvendored_tests": true}, "matplotlib-pyodide": {"name": "matplotlib-pyodide", "version": "0.1.1", "file_name": "matplotlib_pyodide-0.1.1-py3-none-any.whl", "install_dir": "site", "sha256": "38e404e66a30c7eb10acbeda739b340165b0d4479aee1c27510ed7c948e7ae3b", "imports": ["matplotlib_pyodide"], "depends": []}, "matplotlib-tests": {"name": "matplotlib-tests", "version": "3.5.2", "depends": ["matplotlib"], "imports": [], "file_name": "matplotlib-tests.tar", "install_dir": "site", "sha256": "6aaad9b83c83474890ac887b0a83fec882f9e714e574afe3166b4dacd0883de9"}, "micropip": {"name": "micropip", "version": "0.2.0", "file_name": "micropip-0.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "9bc2720f4da16c11543a50567b8c24660119047286cb9557f2965581ade60a5e", "imports": ["micropip"], "depends": ["pyparsing", "packaging"]}, "mne": {"name": "mne", "version": "1.2.3", "file_name": "mne-1.2.3-py3-none-any.whl", "install_dir": "site", "sha256": "08580ef2a4697b140f7ca0775679a57890f4c5c1ecd59cd8e351e2cfb582bb94", "imports": ["mne"], "depends": ["distutils", "numpy", "scipy", "setuptools", "decorator"], "unvendored_tests": true}, "mne-tests": {"name": "mne-tests", "version": "1.2.3", "depends": ["mne"], "imports": [], "file_name": "mne-tests.tar", "install_dir": "site", "sha256": "86761a2a0cdb96a6e160e7b8698a994b43fe47a05f04887d9ff9779c082da5ca"}, "more-itertools": {"name": "more-itertools", "version": "9.0.0", "file_name": "more_itertools-9.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "42e9f651ef2feecae95ee48bdc263bc5887c0548153e9d97e3ff9331ce17e47d", "imports": ["more_itertools"], "depends": []}, "mpmath": {"name": "mpmath", "version": "1.2.1", "file_name": "mpmath-1.2.1-py3-none-any.whl", "install_dir": "site", "sha256": "38e8b99a955154858e8c939dc799201074ca004d662d1c1cafe4ed0ea1bd7344", "imports": ["mpmath"], "depends": [], "unvendored_tests": true}, "mpmath-tests": {"name": "mpmath-tests", "version": "1.2.1", "depends": ["mpmath"], "imports": [], "file_name": "mpmath-tests.tar", "install_dir": "site", "sha256": "e4ce5b37ebff4c1e3ba6c94e580e6c2dcd38a33d61ac30485b7ada540c8f607e"}, "msgpack": {"name": "msgpack", "version": "1.0.4", "file_name": "msgpack-1.0.4-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "2ea45bde8ee83d9ca3058fad96b32f77e711e095e226e110517756b89da60ffe", "imports": ["msgpack"], "depends": []}, "msprime": {"name": "msprime", "version": "1.2.0", "file_name": "msprime-1.2.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "5befb7813d2f6c13154b7ab3288e7cd8271059a14fbe23a9e993adf213f6405f", "imports": ["msprime"], "depends": ["numpy", "newick", "tskit", "demes"]}, "munch": {"name": "munch", "version": "2.5.0", "file_name": "munch-2.5.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "3b2d08014025dd6766de0d2199322bb277550885f6a5f1c2cb49b8a6e3556306", "imports": ["munch"], "depends": ["setuptools", "six"]}, "networkx": {"name": "networkx", "version": "2.8.8", "file_name": "networkx-2.8.8-py3-none-any.whl", "install_dir": "site", "sha256": "1ccdf6afe646550a8b9bb6759efd5aed3afb726bc5c752cec3709314f0ff4518", "imports": ["networkx"], "depends": ["decorator", "setuptools", "matplotlib", "numpy"], "unvendored_tests": true}, "networkx-tests": {"name": "networkx-tests", "version": "2.8.8", "depends": ["networkx"], "imports": [], "file_name": "networkx-tests.tar", "install_dir": "site", "sha256": "dabee7c518ab0ccc3c51c97b769d9802c0ad8c2194dc37c865a34509eba0bb02"}, "newick": {"name": "newick", "version": "1.4.0", "file_name": "newick-1.4.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "37a5fc368a954ff0542c7315c9023d5bfa5767161053d9673b91ff9a83332a83", "imports": ["newick"], "depends": []}, "nlopt": {"name": "nlopt", "version": "2.7.0", "file_name": "nlopt-2.7.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "171f871ce1e2d151f72f84aedb42c861fa513c7bf720c78738bcc99904b22b21", "imports": ["nlopt"], "depends": ["numpy"]}, "nltk": {"name": "nltk", "version": "3.8", "file_name": "nltk-3.8-py3-none-any.whl", "install_dir": "site", "sha256": "45b18cb7a42c0e7994eb1939aca5568c1df7b21ef14ac77e101bf8e6f68e2b8b", "imports": ["nltk"], "depends": ["regex", "sqlite3"], "unvendored_tests": true}, "nltk-tests": {"name": "nltk-tests", "version": "3.8", "depends": ["nltk"], "imports": [], "file_name": "nltk-tests.tar", "install_dir": "site", "sha256": "f30c85bcea7f7a7b64c2e7032127899978844037a9d12522e413e1eb0c8c1cbf"}, "nose": {"name": "nose", "version": "1.3.7", "file_name": "nose-1.3.7-py3-none-any.whl", "install_dir": "site", "sha256": "c3b99ddbe13df6de26f6bd1b53fabc894fffc26d6da80eed4bafa4565a519e35", "imports": ["nose"], "depends": ["setuptools"]}, "numcodecs": {"name": "numcodecs", "version": "0.11.0", "file_name": "numcodecs-0.11.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "658dfb8d8779bb8cebc57e1ec44a92ae5ea86e996ca482fbb66801c81c822c65", "imports": ["numcodecs"], "depends": ["numpy", "msgpack"], "unvendored_tests": true}, "numcodecs-tests": {"name": "numcodecs-tests", "version": "0.11.0", "depends": ["numcodecs"], "imports": [], "file_name": "numcodecs-tests.tar", "install_dir": "site", "sha256": "1313f9185d47e0870b1343260243d7f5828f9bc3a8de4e710b078dda8a1b6ea5"}, "numpy": {"name": "numpy", "version": "1.23.5", "file_name": "numpy-1.23.5-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "f790ec2d8cdf394a058d84ba96c36cbc59d3ac6edae1caaab80a8102e57fdcbd", "imports": ["numpy"], "depends": [], "unvendored_tests": true}, "numpy-tests": {"name": "numpy-tests", "version": "1.23.5", "depends": ["numpy"], "imports": [], "file_name": "numpy-tests.tar", "install_dir": "site", "sha256": "aec26d80f0d77273a999afe1378b45186a09379bf0a76c23222cf5143410e6ea"}, "opencv-python": {"name": "opencv-python", "version": "4.6.0.66", "file_name": "opencv_python-4.6.0.66-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "7493feb5c5ed84931730f92c66ac632fd27fdf871b79caea03aab4e9b7da068d", "imports": ["cv2"], "depends": ["numpy"]}, "openssl": {"name": "openssl", "version": "1.1.1n", "file_name": "openssl-1.1.1n.zip", "install_dir": "dynlib", "sha256": "192ba59ccc91962d35d7adf9181c69ae4f0cd1717604604e4ccc50ee8bb3167b", "imports": [], "shared_library": true, "depends": []}, "optlang": {"name": "optlang", "version": "1.6.1", "file_name": "optlang-1.6.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "34916dad73bbce950640b32b0570edee2360ab31de351485281520f4abfb8a9a", "imports": ["optlang"], "depends": ["sympy", "six", "swiglpk"], "unvendored_tests": true}, "optlang-tests": {"name": "optlang-tests", "version": "1.6.1", "depends": ["optlang"], "imports": [], "file_name": "optlang-tests.tar", "install_dir": "site", "sha256": "14da497d9360d0539d5d9dc9c260e644bb4155b68042dbc41ff2df61f872ba02"}, "packaging": {"name": "packaging", "version": "21.3", "file_name": "packaging-21.3-py3-none-any.whl", "install_dir": "site", "sha256": "0cd0baff6d767ec7bebd94d946379597b8be2e0b851947e1b059a49dd8281c5d", "imports": ["packaging"], "depends": ["pyparsing"]}, "pandas": {"name": "pandas", "version": "1.5.2", "file_name": "pandas-1.5.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "f0f02c2e0f1b4363320c4052fc5a17ea0e1725e85cedb66957a9be45c4b09beb", "imports": ["pandas"], "depends": ["distutils", "numpy", "python-dateutil", "pytz", "setuptools"], "unvendored_tests": true}, "pandas-tests": {"name": "pandas-tests", "version": "1.5.2", "depends": ["pandas"], "imports": [], "file_name": "pandas-tests.tar", "install_dir": "site", "sha256": "b89fa5f708d078fc6282d83366efe1518a51670cd9056fe8aebc6e15c5691bcc"}, "parso": {"name": "parso", "version": "0.8.3", "file_name": "parso-0.8.3-py2.py3-none-any.whl", "install_dir": "site", "sha256": "9e12fc4838fc3a00d2aaed516f152ccc5f8812d75f9b1d2064fcc7c26ee390d7", "imports": ["parso"], "depends": []}, "patsy": {"name": "patsy", "version": "0.5.3", "file_name": "patsy-0.5.3-py2.py3-none-any.whl", "install_dir": "site", "sha256": "04e234cc3c6cdb7a83775f5039fe80124fab0ca7e208d81a92b3eb418d5bedbf", "imports": ["patsy"], "depends": ["numpy", "six"], "unvendored_tests": true}, "patsy-tests": {"name": "patsy-tests", "version": "0.5.3", "depends": ["patsy"], "imports": [], "file_name": "patsy-tests.tar", "install_dir": "site", "sha256": "450c308f70678e00f25e616f1ce393021a67d2d0dd0fb703e6067dd2522c595d"}, "pillow": {"name": "Pillow", "version": "9.1.1", "file_name": "PIL-9.1.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "0435e6b29f91d37698feaa34bedde6e11f7ce2c6b55ee8eca9934ffa7d465fe8", "imports": ["PIL"], "depends": []}, "pillow_heif": {"name": "pillow_heif", "version": "0.8.0", "file_name": "pillow_heif-0.8.0-cp36-abi3-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "600eb9983f9fca8e14fe0bc0d0940a0bfa7bb53a020b5413a5f3e6834245b87a", "imports": ["pillow_heif"], "depends": ["cffi", "pillow", "libheif"]}, "pkgconfig": {"name": "pkgconfig", "version": "1.5.5", "file_name": "pkgconfig-1.5.5-py3-none-any.whl", "install_dir": "site", "sha256": "0e18489f273c58bcf1d76a17eca9f3b1679d3684c527e6e19174fe53e36c11a1", "imports": ["pkgconfig"], "depends": []}, "pluggy": {"name": "pluggy", "version": "1.0.0", "file_name": "pluggy-1.0.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "c72d1d4425bc23c32cad0007a4cf14572fb4125e373345a907dba561d28b528d", "imports": ["pluggy"], "depends": []}, "py": {"name": "py", "version": "1.11.0", "file_name": "py-1.11.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "fb2bf1a04058ccb9456379a60511a935a026fd56b4c9d5880c873ca34d35891e", "imports": ["py"], "depends": []}, "pyb2d": {"name": "pyb2d", "version": "0.7.2", "file_name": "b2d-0.7.4-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "5b855ac1fc9cae510315bef477629e6d23c669e36f523eff023b23da3928941e", "imports": ["b2d"], "depends": ["numpy", "pydantic", "setuptools"]}, "pyclipper": {"name": "pyclipper", "version": "1.3.0.post4", "file_name": "pyclipper-1.3.0.post4-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "fe44871b7a0bc0d0328e8669e86094b4f9f757cab4b3b4052b7dbe15c7940cf5", "imports": ["pyclipper"], "depends": []}, "pycparser": {"name": "pycparser", "version": "2.21", "file_name": "pycparser-2.21-py2.py3-none-any.whl", "install_dir": "site", "sha256": "73428d0b77435bb4aca5ce8c8c4fd98e6d96e73fd996dd1c18d14b9ca68ee548", "imports": ["pycparser"], "depends": []}, "pycryptodome": {"name": "pycryptodome", "version": "3.16.0", "file_name": "pycryptodome-3.16.0-cp35-abi3-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "7a4a41a694f5e70fc6de0a592e780c526934e486b11637526731391beaf05f37", "imports": ["Crypto"], "depends": [], "unvendored_tests": true}, "pycryptodome-tests": {"name": "pycryptodome-tests", "version": "3.16.0", "depends": ["pycryptodome"], "imports": [], "file_name": "pycryptodome-tests.tar", "install_dir": "site", "sha256": "9fdfd0c1fc843707c67e5587b9fbe63d93c7d1695f473854896cc8a245b064dc"}, "pydantic": {"name": "pydantic", "version": "1.10.2", "file_name": "pydantic-1.10.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "9999cdc482c9e20ec7412be8e92e92b72a89d5ae2858b86870a0f533f447ecbe", "imports": ["pydantic"], "depends": ["typing-extensions"]}, "pyerfa": {"name": "pyerfa", "version": "2.0.0.1", "file_name": "pyerfa-2.0.0.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "c735a42b77ac0045c47c2edd9a134825d86689adce50215aef76d1be7f551c9d", "imports": ["erfa"], "depends": ["numpy"], "unvendored_tests": true}, "pyerfa-tests": {"name": "pyerfa-tests", "version": "2.0.0.1", "depends": ["pyerfa"], "imports": [], "file_name": "pyerfa-tests.tar", "install_dir": "site", "sha256": "202c13ddb0aa94154df6ea5acf49ea2e59b92a962e3388a49c9206da203006b9"}, "pygments": {"name": "Pygments", "version": "2.13.0", "file_name": "Pygments-2.13.0-py3-none-any.whl", "install_dir": "site", "sha256": "2ce77448cd7a15f6c8b1bba54048e20e7b3e832a1077654b9edfe17fa66975f7", "imports": ["pygments"], "depends": []}, "pyheif": {"name": "pyheif", "version": "0.7.1", "file_name": "pyheif-0.7.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "676292ea1a43521987caabea19a1c097e82b3e9548091da7b69097413bca5fb8", "imports": ["pyheif"], "depends": ["cffi"]}, "pyinstrument": {"name": "pyinstrument", "version": "4.4.0", "file_name": "pyinstrument-4.4.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "2467d31fe4d798074c80ed4b6aa7776603cc20705b46a8e9e7ac9bd779f39d6c", "imports": ["pyinstrument"], "depends": []}, "pyodide-http": {"name": "pyodide-http", "version": "0.2.0", "file_name": "pyodide_http-0.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "4dcd15c28bc16b366f575327ec680a7df2c3f9c470d74fc84ff20589c243a330", "imports": ["pyodide_http"], "depends": []}, "pyparsing": {"name": "pyparsing", "version": "3.0.9", "file_name": "pyparsing-3.0.9-py3-none-any.whl", "install_dir": "site", "sha256": "e7b6fbc388ecdb2fc06d7653001dac118374ba1bcd3c7f3b0675e056c2c0b31c", "imports": ["pyparsing"], "depends": []}, "pyproj": {"name": "pyproj", "version": "3.4.1", "file_name": "pyproj-3.4.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "63b3d71b0ecacf0a204f98c2f0244b12db2e182675d28c1b5b95c3040bb76bf3", "imports": ["pyproj"], "depends": ["certifi", "sqlite3"]}, "pyrsistent": {"name": "pyrsistent", "version": "0.19.2", "file_name": "pyrsistent-0.19.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "a531ea996d1aa44bf686356539a36681577d2520ec206b80c55c4c69d78664a6", "imports": ["_pyrsistent_version", "pyrsistent"], "depends": []}, "pytest": {"name": "pytest", "version": "7.2.0", "file_name": "pytest-7.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "e8d60c7af2e9b99b672932ebcdb423c04744751a280c6e4dbb2dead78ba097dd", "imports": ["_pytest", "pytest"], "depends": ["atomicwrites", "attrs", "more-itertools", "pluggy", "py", "setuptools", "six", "iniconfig", "exceptiongroup"]}, "pytest-benchmark": {"name": "pytest-benchmark", "version": "4.0.0", "file_name": "pytest_benchmark-4.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "6b7c03664bad68746d48a5561fc6e9c87f3ae9f1577719fc6555298abfac1fee", "imports": ["pytest_benchmark"], "depends": []}, "python-dateutil": {"name": "python-dateutil", "version": "2.8.2", "file_name": "python_dateutil-2.8.2-py2.py3-none-any.whl", "install_dir": "site", "sha256": "e16f063b794b68030363e34349e4c2b3fdd71650b8a1feda60c9726ffb9a4402", "imports": ["dateutil"], "depends": ["six"]}, "python-magic": {"name": "python-magic", "version": "0.4.27", "file_name": "python_magic-0.4.27-py2.py3-none-any.whl", "install_dir": "site", "sha256": "7b028a14d27926c8f5ddc02f0f92ca94c9b052bf6f7918f48e65ffd5b7f8f596", "imports": ["magic"], "depends": ["libmagic"]}, "python-sat": {"name": "python-sat", "version": "0.1.7.dev21", "file_name": "python_sat-0.1.7.dev21-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "99432d76092cf8e9cc357df367c8dd18d45dcb6ab144a2e48bff54dcb47de9d9", "imports": ["pysat"], "depends": ["six"]}, "python_solvespace": {"name": "python_solvespace", "version": "3.0.8", "file_name": "python_solvespace-3.0.8-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "9613da657d0c63fcff82c1deac7d64af54b89c910ddd3a743a81c3e8f82eff17", "imports": ["python_solvespace"], "depends": []}, "pytz": {"name": "pytz", "version": "2022.7", "file_name": "pytz-2022.7-py2.py3-none-any.whl", "install_dir": "site", "sha256": "21e6f9cfe652dc1c8541ab3dd8bb753e61b8c0f0fad8aa858853c09a011b76ef", "imports": ["pytz"], "depends": []}, "pywavelets": {"name": "pywavelets", "version": "1.4.1", "file_name": "PyWavelets-1.4.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "268619f861dcf8205a3e295462754314a54cd925b55872a6fbb63b13e3671b6f", "imports": ["pywt"], "depends": ["distutils", "numpy", "matplotlib", "scipy"], "unvendored_tests": true}, "pywavelets-tests": {"name": "pywavelets-tests", "version": "1.4.1", "depends": ["pywavelets"], "imports": [], "file_name": "pywavelets-tests.tar", "install_dir": "site", "sha256": "d1f10dbbaeb2357fa0e361bc562b5bbd4b9c2fc54bbe3114dbb9f01b5cb7919b"}, "pyyaml": {"name": "pyyaml", "version": "6.0", "file_name": "PyYAML-6.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "c3471e545a4f1a8c8b2b8fe4f08a5eb6c84982d34fd329102b76472751dfe8d0", "imports": ["_yaml", "yaml"], "depends": []}, "rebound": {"name": "rebound", "version": "3.19.8", "file_name": "rebound-3.19.8-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "554d1e85fed1472afbbc73e7889a3cfa06c9a9ad64539cef67a5f2c9531d287f", "imports": ["rebound"], "depends": ["numpy"]}, "reboundx": {"name": "reboundx", "version": "3.7.1", "file_name": "reboundx-3.7.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "27177dfad8ee37bf8a3c2f08b2ed26c71305f972c2f96a93b61e1fc683d3509e", "imports": ["reboundx"], "depends": ["rebound", "numpy"]}, "regex": {"name": "regex", "version": "2022.10.31", "file_name": "regex-2022.10.31-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "3683b3558705172357ae67a57cc7743454cb3bdb928e318089fea4d5f11ff0cf", "imports": ["regex"], "depends": [], "unvendored_tests": true}, "regex-tests": {"name": "regex-tests", "version": "2022.10.31", "depends": ["regex"], "imports": [], "file_name": "regex-tests.tar", "install_dir": "site", "sha256": "6151e231bf4c7897fc78bbd1393204e3eeeced7578af344f4aa51178ec40c25f"}, "retrying": {"name": "retrying", "version": "1.3.4", "file_name": "retrying-1.3.4-py3-none-any.whl", "install_dir": "site", "sha256": "4ddd34013edaa316b39176fac4c7e0d0a39ba4771759b97f08b2c388731a239c", "imports": ["retrying"], "depends": ["six"]}, "robotraconteur": {"name": "RobotRaconteur", "version": "0.15.1", "file_name": "RobotRaconteur-0.15.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "d14858d061e8db884829b2fd3372100ee0c3410fd00e1c2f21648f48afd5affc", "imports": ["RobotRaconteur"], "depends": ["numpy"]}, "ruamel.yaml": {"name": "ruamel.yaml", "version": "0.17.21", "file_name": "ruamel.yaml-0.17.21-py3-none-any.whl", "install_dir": "site", "sha256": "4df8fc0d741ff26eec05ad07f0447a2d2977bba4876cf08b0bc4f235be84ad2c", "imports": ["ruamel"], "depends": []}, "scikit-image": {"name": "scikit-image", "version": "0.19.3", "file_name": "scikit_image-0.19.3-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "8ce3947956d7fd85b53719c78d885bf7681f26e4c2dd3c7b84cb0028d96c2f37", "imports": ["skimage"], "depends": ["distutils", "packaging", "numpy", "scipy", "matplotlib", "networkx", "pillow", "imageio", "pywavelets"], "unvendored_tests": true}, "scikit-image-tests": {"name": "scikit-image-tests", "version": "0.19.3", "depends": ["scikit-image"], "imports": [], "file_name": "scikit-image-tests.tar", "install_dir": "site", "sha256": "b880540e043d825c0b236494dd6e5602984e0204d40c672be42b6ba867b731f7"}, "scikit-learn": {"name": "scikit-learn", "version": "1.2.0", "file_name": "scikit_learn-1.2.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "3b6b7afac03c8899dbfb41ebcbdb5c5543496d1a184b4a530c6db56114e38d28", "imports": ["sklearn"], "depends": ["scipy", "joblib", "threadpoolctl"], "unvendored_tests": true}, "scikit-learn-tests": {"name": "scikit-learn-tests", "version": "1.2.0", "depends": ["scikit-learn"], "imports": [], "file_name": "scikit-learn-tests.tar", "install_dir": "site", "sha256": "8268006f38daf15d8351025b2af3eff242c79ae674c043302d38ec7c68edb17d"}, "scipy": {"name": "scipy", "version": "1.9.3", "file_name": "scipy-1.9.3-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "fe576407e69f349185203cf17a95f920c6cb4e4354b8709939bf851fb780f63a", "imports": ["scipy"], "depends": ["numpy", "clapack"], "unvendored_tests": true}, "scipy-tests": {"name": "scipy-tests", "version": "1.9.3", "depends": ["scipy"], "imports": [], "file_name": "scipy-tests.tar", "install_dir": "site", "sha256": "1d83d201a194b4a52ea5a669f7a8b6efa1b92cff6a14000fdbbcaa12d62fc084"}, "setuptools": {"name": "setuptools", "version": "65.6.3", "file_name": "setuptools-65.6.3-py3-none-any.whl", "install_dir": "site", "sha256": "279da883fe85e8372381523ac6e3cc0230c01af9da237db46f99cbc3b5a1446f", "imports": ["_distutils_hack", "pkg_resources", "setuptools"], "depends": ["distutils", "pyparsing"]}, "shapely": {"name": "shapely", "version": "1.8.2", "file_name": "Shapely-1.8.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "6da34a890c18a6f920893171102cc9424c0261068cd5503cc88352d78b6744aa", "imports": ["shapely"], "depends": ["numpy"], "unvendored_tests": true}, "shapely-tests": {"name": "shapely-tests", "version": "1.8.2", "depends": ["shapely"], "imports": [], "file_name": "shapely-tests.tar", "install_dir": "site", "sha256": "b4cb3e92daea25c613ec966795ef9d8998c87874b73409342159518989094025"}, "sharedlib-test": {"name": "sharedlib-test", "version": "1.0", "file_name": "sharedlib-test-1.0.zip", "install_dir": "dynlib", "sha256": "3cc5dccd1c1d21f33f05f2b8a75d737f5abc52c187e4dcbff413cd6cfa3ba4ff", "imports": [], "shared_library": true, "depends": []}, "sharedlib-test-py": {"name": "sharedlib-test-py", "version": "1.0", "file_name": "sharedlib_test_py-1.0-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "d53cccf0a2c2d5e34ff6516a5928882389352e7c8c49305e0a170eb6c900924f", "imports": ["sharedlib_test"], "depends": ["sharedlib-test"]}, "six": {"name": "six", "version": "1.16.0", "file_name": "six-1.16.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "3eaae52f4b0de9a9936a61906cfba75643cf9a3bca76b555c39a1af5eb3a556f", "imports": ["six"], "depends": []}, "smart_open": {"name": "smart_open", "version": "6.3.0", "file_name": "smart_open-6.3.0-py3-none-any.whl", "install_dir": "site", "sha256": "c5ff9984ed17b8710420598701a0a24be28ef9b03c7c1e81747aa98bc7e0b905", "imports": ["smart_open"], "depends": []}, "soupsieve": {"name": "soupsieve", "version": "2.3.2.post1", "file_name": "soupsieve-2.3.2.post1-py3-none-any.whl", "install_dir": "site", "sha256": "5f2287631b955d786ad538f38b5b98cd1e7adce8bb3c6e296c0189fc359f9bae", "imports": ["soupsieve"], "depends": []}, "sparseqr": {"name": "sparseqr", "version": "1.2", "file_name": "sparseqr-1.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "e370b43c05b7c88cc999ed2ae0309f3a3e8897cae7cc4555db444a54cb6b69f8", "imports": ["sparseqr"], "depends": ["pycparser", "cffi", "numpy", "scipy", "suitesparse", "distutils"]}, "sqlalchemy": {"name": "sqlalchemy", "version": "1.4.45", "file_name": "SQLAlchemy-1.4.45-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "bb77fdcba7a6ca2fd7945c15389e3508dee5ff572bc26e3d7e2bbac01b6348b2", "imports": ["sqlalchemy"], "depends": ["sqlite3"], "unvendored_tests": true}, "sqlalchemy-tests": {"name": "sqlalchemy-tests", "version": "1.4.45", "depends": ["sqlalchemy"], "imports": [], "file_name": "sqlalchemy-tests.tar", "install_dir": "site", "sha256": "c86bcc1adf9f51041797dd644b210fe79378cacd753282cda7ff0990baef2838"}, "sqlite3": {"name": "sqlite3", "version": "1.0.0", "file_name": "sqlite3-1.0.0.zip", "install_dir": "stdlib", "sha256": "0d1b4bff8e89b57633dc63989225c88e54ed86e7c7476c7ab7f5cd4638019819", "imports": ["sqlite3", "_sqlite3"], "shared_library": true, "depends": []}, "ssl": {"name": "ssl", "version": "1.0.0", "file_name": "ssl-1.0.0.zip", "install_dir": "stdlib", "sha256": "7d8290f08252fc2e47b40eec7d7697101c31a2ac82cc935afc34c240ca2e8427", "imports": ["ssl", "_ssl"], "shared_library": true, "depends": ["openssl"]}, "statsmodels": {"name": "statsmodels", "version": "0.13.5", "file_name": "statsmodels-0.13.5-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "55181dc0b115e4f012bab8eecd96e213465d2374ab08852c7bcf01b5d09f3b25", "imports": ["statsmodels"], "depends": ["distutils", "numpy", "scipy", "pandas", "patsy", "packaging"], "unvendored_tests": true}, "statsmodels-tests": {"name": "statsmodels-tests", "version": "0.13.5", "depends": ["statsmodels"], "imports": [], "file_name": "statsmodels-tests.tar", "install_dir": "site", "sha256": "35c133d5dbc2948f7af64eebedfc36937e3ef6619af2d63cbdd9f4b7609a51d1"}, "suitesparse": {"name": "suitesparse", "version": "5.11.0", "file_name": "suitesparse-5.11.0.zip", "install_dir": "dynlib", "sha256": "95fabd36ec754f06beede033e73512b717ee65cbc8ef7bbd302fd06ca6dd929e", "imports": [], "shared_library": true, "depends": ["clapack"]}, "svgwrite": {"name": "svgwrite", "version": "1.4.3", "file_name": "svgwrite-1.4.3-py3-none-any.whl", "install_dir": "site", "sha256": "aff3f0fb74add47565a6a2cebc79954d85b644154378ec58498aafb476867f74", "imports": ["svgwrite"], "depends": []}, "swiglpk": {"name": "swiglpk", "version": "5.0.8", "file_name": "swiglpk-5.0.8-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "b81c109bacb7e91d6ebd34754175d33cfa4b897052ea6355892cbab09da000c1", "imports": ["swiglpk"], "depends": []}, "sympy": {"name": "sympy", "version": "1.11.1", "file_name": "sympy-1.11.1-py3-none-any.whl", "install_dir": "site", "sha256": "02cdf47d8efcb23eb3f0b968edbc5aaebe1f694445028528866f07e8b0640cd9", "imports": ["isympy", "sympy"], "depends": ["distutils", "mpmath"], "unvendored_tests": true}, "sympy-tests": {"name": "sympy-tests", "version": "1.11.1", "depends": ["sympy"], "imports": [], "file_name": "sympy-tests.tar", "install_dir": "site", "sha256": "1fac42ca8246dd4f416424d9c75c71ca2a9e3fd5f7c1ef35c204b24272da6291"}, "tblib": {"name": "tblib", "version": "1.7.0", "file_name": "pyodide_tblib-1.7.1-py3-none-any.whl", "install_dir": "site", "sha256": "b1a4985fd6850fd66f1a1f3f58b87dc73500b08bf3d5c78f51f65b8fbb431230", "imports": ["tblib"], "depends": []}, "termcolor": {"name": "termcolor", "version": "2.1.1", "file_name": "termcolor-2.1.1-py3-none-any.whl", "install_dir": "site", "sha256": "fbd465ed12b2e964f8320b8299823b5ad1b75d781cb2936763dbdb9051c5fcdf", "imports": ["termcolor"], "depends": []}, "test": {"name": "test", "version": "1.0.0", "file_name": "test-1.0.0.zip", "install_dir": "stdlib", "sha256": "1445b2bf6ffd9ebd7f3cb3cc65fe985821a14807276215bba640ac39800af1a4", "imports": ["test"], "shared_library": true, "depends": []}, "threadpoolctl": {"name": "threadpoolctl", "version": "3.1.0", "file_name": "threadpoolctl-3.1.0-py3-none-any.whl", "install_dir": "site", "sha256": "eea0cac36b01ed013712f6a76eae0f1a45e6fe330cbaeae6db998e067ef31007", "imports": ["threadpoolctl"], "depends": []}, "tomli": {"name": "tomli", "version": "2.0.1", "file_name": "tomli-2.0.1-py3-none-any.whl", "install_dir": "site", "sha256": "3f4ae872912ab4935c364f08ed0f02150fd5c08d3fe1ff9fe6c2e9de49e6a570", "imports": ["tomli"], "depends": []}, "tomli-w": {"name": "tomli-w", "version": "1.0.0", "file_name": "tomli_w-1.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "8c7362edc136c686d3548810040a53242bbf6681a24814bd528880b9b6b1fe53", "imports": ["tomli_w"], "depends": []}, "toolz": {"name": "toolz", "version": "0.12.0", "file_name": "toolz-0.12.0-py3-none-any.whl", "install_dir": "site", "sha256": "401f47ba0c91a70c2715a43d6f91b75cd2e5a3e2a995350cca97bcd472f3c16d", "imports": ["tlz", "toolz"], "depends": [], "unvendored_tests": true}, "toolz-tests": {"name": "toolz-tests", "version": "0.12.0", "depends": ["toolz"], "imports": [], "file_name": "toolz-tests.tar", "install_dir": "site", "sha256": "8172ddeb084a3a650f2a4692e9e6949b4a6099e11e1052bcf5f181dc098b7d69"}, "tqdm": {"name": "tqdm", "version": "4.64.1", "file_name": "tqdm-4.64.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "82e2111fdc8691b8907c225d04f9ea61e8b5fc133942dd5b150c36f476253ca2", "imports": ["tqdm"], "depends": []}, "traits": {"name": "traits", "version": "6.4.1", "file_name": "traits-6.4.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "dbaf699a5b9e4759657028b338282930dab34096b323ead7dddb5103ee208aeb", "imports": ["traits"], "depends": [], "unvendored_tests": true}, "traits-tests": {"name": "traits-tests", "version": "6.4.1", "depends": ["traits"], "imports": [], "file_name": "traits-tests.tar", "install_dir": "site", "sha256": "a4fa7aa4a6878a41b4b72b4888cbb484063d846e21662f93a02bf189b869a8cb"}, "tskit": {"name": "tskit", "version": "0.5.3", "file_name": "tskit-0.5.3-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "61acb4d705bfa286ab6be0f894e7e476def667863a4493d983b8a3c996d580fe", "imports": ["tskit"], "depends": ["numpy", "svgwrite", "jsonschema"]}, "typing-extensions": {"name": "typing-extensions", "version": "4.4.0", "file_name": "typing_extensions-4.4.0-py3-none-any.whl", "install_dir": "site", "sha256": "329123efe0fb5f6408cfeba434f4fc830d365332c8a9470d11a0284f9835a7f0", "imports": ["typing_extensions"], "depends": []}, "uncertainties": {"name": "uncertainties", "version": "3.1.7", "file_name": "uncertainties-3.1.7-py2.py3-none-any.whl", "install_dir": "site", "sha256": "7360d4934a7a0b70bfa20a76f25bba0a5a02b9390fd8208c8f52ded6b10ccb3d", "imports": ["uncertainties"], "depends": ["future"], "unvendored_tests": true}, "uncertainties-tests": {"name": "uncertainties-tests", "version": "3.1.7", "depends": ["uncertainties"], "imports": [], "file_name": "uncertainties-tests.tar", "install_dir": "site", "sha256": "945f01aecfe605da2c7e8ea8ed4e8657cf9f8e30db18081016661514cc6f522d"}, "unyt": {"name": "unyt", "version": "2.9.3", "file_name": "unyt-2.9.3-py2.py3-none-any.whl", "install_dir": "site", "sha256": "6822701b5f425971d749deb7ef0997791beb046a5f99f598d63a903921312ae2", "imports": ["unyt"], "depends": ["numpy", "sympy"], "unvendored_tests": true}, "unyt-tests": {"name": "unyt-tests", "version": "2.9.3", "depends": ["unyt"], "imports": [], "file_name": "unyt-tests.tar", "install_dir": "site", "sha256": "46574bc00063d4bc670a12e98d7797d0507119bac4292f3c2dbd5fce92fe8a55"}, "webencodings": {"name": "webencodings", "version": "0.5.1", "file_name": "webencodings-0.5.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "a796b784dec32b54dc55a5881bf174b25e793155f7cb3408b9a7f147e6d33c62", "imports": ["webencodings"], "depends": []}, "wordcloud": {"name": "wordcloud", "version": "1.8.2.2", "file_name": "wordcloud-1.8.2.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "416bf31f81efdb31d803efd5a3e516bb417f496b8beedf944ba7a6356dab30ff", "imports": ["wordcloud"], "depends": ["matplotlib"]}, "wrapt": {"name": "wrapt", "version": "1.14.1", "file_name": "wrapt-1.14.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "7e18faed8e09b214ee15d5409168ecad9ef3606509a88cd0667bb6bcfd92db5c", "imports": ["wrapt"], "depends": []}, "xarray": {"name": "xarray", "version": "2022.12.0", "file_name": "xarray-2022.12.0-py3-none-any.whl", "install_dir": "site", "sha256": "ac7348cde89bfe8281c117c24d1ac4510104a228915d715856fd04fe19603772", "imports": ["xarray"], "depends": ["numpy", "packaging", "pandas"], "unvendored_tests": true}, "xarray-tests": {"name": "xarray-tests", "version": "2022.12.0", "depends": ["xarray"], "imports": [], "file_name": "xarray-tests.tar", "install_dir": "site", "sha256": "4d9a98d8ee2f554029d599694ee3d70bd65f50642c53609bb9d77f34bba671f4"}, "xgboost": {"name": "xgboost", "version": "1.6.1", "file_name": "xgboost-1.6.1-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "28e3e4335069269aaa98fb98dfcd232804befb5a2ad4fee28a74c46b0bfcadde", "imports": ["xgboost"], "depends": ["numpy", "scipy", "setuptools"]}, "xlrd": {"name": "xlrd", "version": "2.0.1", "file_name": "xlrd-2.0.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "81e4ae5197a621bac2dd68bed5693f0b1ebd773560127fef2f3f8da36d9f48aa", "imports": ["xlrd"], "depends": []}, "yt": {"name": "yt", "version": "4.1.2", "file_name": "yt-4.1.2-cp310-cp310-emscripten_3_1_27_wasm32.whl", "install_dir": "site", "sha256": "a1721f789a7d6e96eed35476990b7242f7156aa83ecd9811d6a25bf12c4f7121", "imports": ["yt"], "depends": ["numpy", "matplotlib", "sympy", "setuptools", "packaging", "unyt", "cmyt", "colorspacious", "tqdm", "tomli", "tomli-w"]}, "zarr": {"name": "zarr", "version": "2.13.3", "file_name": "zarr-2.13.3-py3-none-any.whl", "install_dir": "site", "sha256": "8ff385c5ab47af01070adc8b530b7fee7130cbf032cafc8fa8c3c4e973c8b037", "imports": ["zarr"], "depends": ["numpy", "asciitree", "numcodecs"], "unvendored_tests": true}, "zarr-tests": {"name": "zarr-tests", "version": "2.13.3", "depends": ["zarr"], "imports": [], "file_name": "zarr-tests.tar", "install_dir": "site", "sha256": "8c3b9d2df2e0b45028b3ce9aedcf7f2a5b230aa2e6c017099b4a44c0aca9cff5"}}}
|
|
1
|
+
{"info": {"arch": "wasm32", "platform": "emscripten_3_1_32", "version": "0.23.3", "python": "3.11.2"}, "packages": {"asciitree": {"name": "asciitree", "version": "0.3.3", "file_name": "asciitree-0.3.3-py3-none-any.whl", "install_dir": "site", "sha256": "799e53ffc1bfeb307e0ba3ee42d981c372206a35c67a9f16d386695987b45e03", "package_type": "package", "imports": ["asciitree"], "depends": []}, "astropy": {"name": "astropy", "version": "5.2.2", "file_name": "astropy-5.2.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "3f7535eeb7f1e7415354ab42887948cbd68c26ccac1478cf4dec59ca8e69a351", "package_type": "package", "imports": ["astropy"], "depends": ["distutils", "packaging", "numpy", "pyerfa", "pyyaml"]}, "atomicwrites": {"name": "atomicwrites", "version": "1.4.1", "file_name": "atomicwrites-1.4.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "01317199e05d3cfd844c1a6e8d19f1c82ab29b0b47c191ee523a4b51be3eb624", "package_type": "package", "imports": ["atomicwrites"], "depends": []}, "attrs": {"name": "attrs", "version": "22.2.0", "file_name": "attrs-22.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "1a004746dc2f759224ad1384b971491cac76c2e6061a230d6bf6b78ac96a9a64", "package_type": "package", "imports": ["attr", "attrs"], "depends": ["six"]}, "autograd": {"name": "autograd", "version": "1.5", "file_name": "autograd-1.5-py3-none-any.whl", "install_dir": "site", "sha256": "b1702929a87fcb11034f07bbb423aa8e365ddf205f829ca800600189d9dcfff1", "package_type": "package", "imports": ["autograd"], "depends": ["numpy", "future"], "unvendored_tests": true}, "autograd-tests": {"name": "autograd-tests", "version": "1.5", "depends": ["autograd"], "imports": [], "file_name": "autograd-tests.tar", "install_dir": "site", "sha256": "8eb14e39ef267ecced518b5ce32e047ed01ad82e20b73a4b892f0f370a2bbb67"}, "bcrypt": {"name": "bcrypt", "version": "4.0.1", "file_name": "bcrypt-4.0.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "46ab462fb8e484ca3e39ead781f72a4e50c01f81bc4102e9f521bb348ce7c37b", "package_type": "package", "imports": ["bcrypt"], "depends": []}, "beautifulsoup4": {"name": "beautifulsoup4", "version": "4.12.0", "file_name": "beautifulsoup4-4.12.0-py3-none-any.whl", "install_dir": "site", "sha256": "301f5217a12d40f673fe989b86b48c16da133949ddb0b4e7b4d1e8d930ae2e50", "package_type": "package", "imports": ["bs4"], "depends": ["soupsieve"], "unvendored_tests": true}, "beautifulsoup4-tests": {"name": "beautifulsoup4-tests", "version": "4.12.0", "depends": ["beautifulsoup4"], "imports": [], "file_name": "beautifulsoup4-tests.tar", "install_dir": "site", "sha256": "d3f2086c671c202b9ac6cd30771b5f0c62bd8138b9a56676ec4ee4532749ba88"}, "biopython": {"name": "biopython", "version": "1.81", "file_name": "biopython-1.81-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "7bc1d4f9430c2d1f84865e4d291feaa5ce3d895303c580377e9b365ab42e0f8d", "package_type": "package", "imports": ["Bio", "BioSQL"], "depends": ["numpy"]}, "bitarray": {"name": "bitarray", "version": "2.7.3", "file_name": "bitarray-2.7.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "455dda507fce287f6df1fd2779a984ff1ec93a3908cb2d2091b4183780dd1e24", "package_type": "package", "imports": ["bitarray"], "depends": [], "unvendored_tests": true}, "bitarray-tests": {"name": "bitarray-tests", "version": "2.7.3", "depends": ["bitarray"], "imports": [], "file_name": "bitarray-tests.tar", "install_dir": "site", "sha256": "e79d7fc89742a2a44f2af688b57fd73b634fe60e8742aa8f8bb9294710f24604"}, "bleach": {"name": "bleach", "version": "6.0.0", "file_name": "bleach-6.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "193d8b05ecde8de4901731e59aad98ed5136484df241e002d00b7610012738ab", "package_type": "package", "imports": ["bleach"], "depends": ["webencodings", "packaging", "six"]}, "bokeh": {"name": "bokeh", "version": "3.1.0", "file_name": "bokeh-3.1.0-py3-none-any.whl", "install_dir": "site", "sha256": "99cb1b4586ff0cc8135e3373dd4eb833772e7686fc69898bf9762c45a6fa44c1", "package_type": "package", "imports": ["bokeh"], "depends": ["distutils", "numpy", "jinja2", "pillow", "python-dateutil", "six", "typing-extensions", "pyyaml"]}, "boost-histogram": {"name": "boost-histogram", "version": "1.3.2", "file_name": "boost_histogram-1.3.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1164b1a6b8c22ce4ab197657245b36f33a9f62e76de01e201fccdaba87c6760b", "package_type": "package", "imports": ["boost_histogram"], "depends": ["numpy"]}, "brotli": {"name": "brotli", "version": "1.0.9", "file_name": "Brotli-1.0.9-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "4b895b0b88ff93812f282a141fa113b8210199b5dbe86823148f89b6ced1f309", "package_type": "package", "imports": ["brotli"], "depends": []}, "cbor-diag": {"name": "cbor-diag", "version": "1.0.0", "file_name": "cbor_diag-1.0.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "10a1b5cf9f02ad7d62ad37d2590463a420e978536bb39689afd45834e01c04d3", "package_type": "package", "imports": ["cbor_diag"], "depends": []}, "certifi": {"name": "certifi", "version": "2022.12.7", "file_name": "certifi-2022.12.7-py3-none-any.whl", "install_dir": "site", "sha256": "7e8987886f4b15f2ba70bbe99a71331de4109ba6d6e25709968154d6fbfffdf7", "package_type": "package", "imports": ["certifi"], "depends": []}, "cffi": {"name": "cffi", "version": "1.15.1", "file_name": "cffi-1.15.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "0501ca4249ca85e36821a2abc318b6486b45dc0a7fdaf6b13f21be1a22c4748d", "package_type": "package", "imports": ["cffi"], "depends": ["pycparser"]}, "cffi_example": {"name": "cffi_example", "version": "0.1", "file_name": "cffi_example-0.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1d83b6a014b0ff4a282fdedda370dcb01a55b8ba1d6b831aa8dc7bcffd03d5b1", "package_type": "package", "imports": ["cffi_example"], "depends": ["cffi"]}, "cftime": {"name": "cftime", "version": "1.6.2", "file_name": "cftime-1.6.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "eadde6f58d874097a449535a39df4703b051a7a34694afc0a4f667ba9dd8cd3f", "package_type": "package", "imports": ["cftime"], "depends": ["numpy"]}, "clapack": {"name": "CLAPACK", "version": "3.2.1", "file_name": "CLAPACK-3.2.1.zip", "install_dir": "dynlib", "sha256": "b4c9ba38b0f258a2b6b4b5377c8bd7837192a02b6d916c928ffc563cef1601c0", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "click": {"name": "click", "version": "8.1.3", "file_name": "click-8.1.3-py3-none-any.whl", "install_dir": "site", "sha256": "a5645c31590b9ace30670dadb5a4778401fe9f843f25684306fd6ec06d40ed19", "package_type": "package", "imports": ["click"], "depends": []}, "cligj": {"name": "cligj", "version": "0.7.2", "file_name": "cligj-0.7.2-py3-none-any.whl", "install_dir": "site", "sha256": "397e0cc4262a336473e3206cce1f06123a2eb4a209f1dc340b55993f485003a4", "package_type": "package", "imports": ["cligj"], "depends": ["click"]}, "cloudpickle": {"name": "cloudpickle", "version": "2.2.1", "file_name": "cloudpickle-2.2.1-py3-none-any.whl", "install_dir": "site", "sha256": "c7a6607341abeb3406f08440f081d03e166cee106ed8b4756835ebf1ec44dbea", "package_type": "package", "imports": ["cloudpickle"], "depends": []}, "cmyt": {"name": "cmyt", "version": "1.1.3", "file_name": "cmyt-1.1.3-py3-none-any.whl", "install_dir": "site", "sha256": "3b1635050eb7809aeda611f2ee42da7fac5c0c750d652941cd65307ead4747d0", "package_type": "package", "imports": ["cmyt"], "depends": ["colorspacious", "matplotlib", "more-itertools", "numpy"], "unvendored_tests": true}, "cmyt-tests": {"name": "cmyt-tests", "version": "1.1.3", "depends": ["cmyt"], "imports": [], "file_name": "cmyt-tests.tar", "install_dir": "site", "sha256": "0f5a606adf9ea468d334935ef5d2e0b34049337488593f6e27d57e72d50a506f"}, "colorspacious": {"name": "colorspacious", "version": "1.1.2", "file_name": "colorspacious-1.1.2-py2.py3-none-any.whl", "install_dir": "site", "sha256": "6bceeea8e319bc7f00d74459c8f1012665e3b8dfee043a4c9a548104180f5949", "package_type": "package", "imports": ["colorspacious"], "depends": ["numpy"]}, "coverage": {"name": "coverage", "version": "7.2.2", "file_name": "coverage-7.2.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "786ff25c6bec852a763eaa44e6264382876e8e8bbc8dca06450ac42d560e830e", "package_type": "package", "imports": ["coverage"], "depends": ["sqlite3"]}, "cpp-exceptions-test": {"name": "cpp-exceptions-test", "version": "0.1", "file_name": "cpp-exceptions-test-0.1.zip", "install_dir": "dynlib", "sha256": "99ef72ec2b5c58d46092c76063286fa09fe81710fe369752d4bcb78de86de1b2", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "cramjam": {"name": "cramjam", "version": "2.6.2", "file_name": "cramjam-2.6.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "b9868d519cfe96bc87b9f67019105459e66fe60865e5c6910ddc07dd27071c0a", "package_type": "package", "imports": ["cramjam"], "depends": []}, "cryptography": {"name": "cryptography", "version": "39.0.2", "file_name": "cryptography-39.0.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "ffd220e11872dee9ade5f58e1da9faf3c0fa45397dce78293128881372fda864", "package_type": "package", "imports": ["cryptography"], "depends": ["openssl", "six", "cffi"]}, "cssselect": {"name": "cssselect", "version": "1.2.0", "file_name": "cssselect-1.2.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "667531ba956e57d3e810a37ea06e733503bf455878f374714f9be07979b9f393", "package_type": "package", "imports": ["cssselect"], "depends": []}, "cycler": {"name": "cycler", "version": "0.11.0", "file_name": "cycler-0.11.0-py3-none-any.whl", "install_dir": "site", "sha256": "bf3e9a5aeb6ed8d3c0294df5e28e14baf3f68b9d3d93ff709f3854e5231a8deb", "package_type": "package", "imports": ["cycler"], "depends": ["six"]}, "cytoolz": {"name": "cytoolz", "version": "0.12.1", "file_name": "cytoolz-0.12.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "ac1fe02eda9873580e171db064daf05a2fe2ee96f6e2584b8e2dba6f80cd034a", "package_type": "package", "imports": ["cytoolz"], "depends": ["nose", "toolz"], "unvendored_tests": true}, "cytoolz-tests": {"name": "cytoolz-tests", "version": "0.12.1", "depends": ["cytoolz"], "imports": [], "file_name": "cytoolz-tests.tar", "install_dir": "site", "sha256": "2ddd64bd829a267882b7a69c7a54af0f094ab05a967f9fd42a90e1546685cecc"}, "decorator": {"name": "decorator", "version": "5.1.1", "file_name": "decorator-5.1.1-py3-none-any.whl", "install_dir": "site", "sha256": "d1000545d13b7e5067c6234977a03266e2afaaf6b02beafcc1c21d220f81aa2a", "package_type": "package", "imports": ["decorator"], "depends": []}, "demes": {"name": "demes", "version": "0.2.2", "file_name": "demes-0.2.2-py3-none-any.whl", "install_dir": "site", "sha256": "1422a1dff67d772fd41806ca375fb97a77c3e8a1183b714180bdb737d85e5c2e", "package_type": "package", "imports": ["demes"], "depends": ["attrs", "ruamel.yaml"]}, "distlib": {"name": "distlib", "version": "0.3.6", "file_name": "distlib-0.3.6-py2.py3-none-any.whl", "install_dir": "site", "sha256": "e921326230271b1ce83befb21558678c4f315243a43cfe43c0b297b6422c73a7", "package_type": "package", "imports": ["distlib"], "depends": []}, "distutils": {"name": "distutils", "version": "1.0.0", "file_name": "distutils-1.0.0.zip", "install_dir": "stdlib", "sha256": "60638f13c91e4af423b891984b4d05a801697f8ca82ccfc49e60fef8ceacb64f", "package_type": "cpython_module", "imports": ["distutils"], "shared_library": true, "depends": []}, "docutils": {"name": "docutils", "version": "0.19", "file_name": "docutils-0.19-py3-none-any.whl", "install_dir": "site", "sha256": "6abbe5ee8dba0610246089d85891a529ba9854d09f1af6c69158f39866cd9536", "package_type": "package", "imports": ["docutils"], "depends": []}, "exceptiongroup": {"name": "exceptiongroup", "version": "1.1.1", "file_name": "exceptiongroup-1.1.1-py3-none-any.whl", "install_dir": "site", "sha256": "736a406c779d3eb99533fabb8c38c484021c86e18cbf264fdbc906b8232012dc", "package_type": "package", "imports": ["exceptiongroup"], "depends": []}, "fastparquet": {"name": "fastparquet", "version": "2023.2.0", "file_name": "fastparquet-2023.2.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "b9d2fd46c4655e94b3cf0b265e365da4fc16db4389075794f9e5ebaf202fa9c8", "package_type": "package", "imports": ["fastparquet"], "depends": ["cramjam", "numpy", "pandas", "fsspec", "packaging"]}, "fiona": {"name": "fiona", "version": "1.8.22", "file_name": "Fiona-1.8.22-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "34feef9329517626c75dd0b81e6466c590d8db3dda72278664d79edbd918e346", "package_type": "package", "imports": ["fiona"], "depends": ["attrs", "certifi", "setuptools", "six", "click", "cligj"]}, "fonttools": {"name": "fonttools", "version": "4.39.3", "file_name": "fonttools-4.39.3-py3-none-any.whl", "install_dir": "site", "sha256": "a565783e184c1d22bf440f5005656dbc521edddc488569d6ce75c7f9a5ff5e80", "package_type": "package", "imports": ["fontTools"], "depends": []}, "fpcast-test": {"name": "fpcast-test", "version": "0.1", "file_name": "fpcast_test-0.1.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "793d60f45a92e4a4a1ec8ae5f8b93a014a264fad50ee62656dfc5329435dfca8", "package_type": "package", "imports": ["fpcast_test"], "depends": []}, "fsspec": {"name": "fsspec", "version": "2023.3.0", "file_name": "fsspec-2023.3.0-py3-none-any.whl", "install_dir": "site", "sha256": "f6f487d2e38dce54d08110ae97fb479f1484efbfc0a559a44e9566276c5369c1", "package_type": "package", "imports": ["fsspec"], "depends": [], "unvendored_tests": true}, "fsspec-tests": {"name": "fsspec-tests", "version": "2023.3.0", "depends": ["fsspec"], "imports": [], "file_name": "fsspec-tests.tar", "install_dir": "site", "sha256": "556fd6468660a1ecdfc57299d557e87db6b098cb840cda8313c58e14595222e4"}, "future": {"name": "future", "version": "0.18.3", "file_name": "future-0.18.3-py3-none-any.whl", "install_dir": "site", "sha256": "d80f7d84688fdffe21091017026bc2dece89e2a4468f2ebb47a3f0b559e70732", "package_type": "package", "imports": ["future"], "depends": [], "unvendored_tests": true}, "future-tests": {"name": "future-tests", "version": "0.18.3", "depends": ["future"], "imports": [], "file_name": "future-tests.tar", "install_dir": "site", "sha256": "163e9e0f3237f430e147bb0e610f13eac979105640b93170a0537578ce65386e"}, "galpy": {"name": "galpy", "version": "1.8.3", "file_name": "galpy-1.8.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "55724933abe2aad562edb87fe7bf010d94a32465482fc232878f3ae72849ee00", "package_type": "package", "imports": ["galpy"], "depends": ["numpy", "scipy", "matplotlib", "astropy", "future", "setuptools"]}, "gdal": {"name": "gdal", "version": "3.5.1", "file_name": "gdal-3.5.1.zip", "install_dir": "dynlib", "sha256": "5510373bbc5f6ebe625d595d7b86b94b407dde6205e60b87cec8afe750043b1c", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": ["geos"]}, "gensim": {"name": "gensim", "version": "4.3.1", "file_name": "gensim-4.3.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "cc22acec315daa5b45ac4f6936021b5d8a96293d32abf82f971d62b46d8440d8", "package_type": "package", "imports": ["gensim"], "depends": ["numpy", "scipy", "six", "smart_open"], "unvendored_tests": true}, "gensim-tests": {"name": "gensim-tests", "version": "4.3.1", "depends": ["gensim"], "imports": [], "file_name": "gensim-tests.tar", "install_dir": "site", "sha256": "da4a68ed44733452386d80e94abfac0e3702875f8deda5565609dafa3a9adf2d"}, "geopandas": {"name": "geopandas", "version": "0.12.2", "file_name": "geopandas-0.12.2-py3-none-any.whl", "install_dir": "site", "sha256": "5ee8f47dc9dbc7e14c53649162a9705ad1090aa0244bc5a2477ed253ebec834c", "package_type": "package", "imports": ["geopandas"], "depends": ["shapely", "fiona", "pyproj", "packaging", "pandas"], "unvendored_tests": true}, "geopandas-tests": {"name": "geopandas-tests", "version": "0.12.2", "depends": ["geopandas"], "imports": [], "file_name": "geopandas-tests.tar", "install_dir": "site", "sha256": "281a43c57e42a434ea7e2ae418e7ef6b147770256e16b34acbf48d0c9e1d4c64"}, "geos": {"name": "geos", "version": "3.10.3", "file_name": "geos-3.10.3.zip", "install_dir": "dynlib", "sha256": "5ec391ff2848869cf12e65e4bd858ae32ddc09ae8eef5628c98328c297bfc25e", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "gmpy2": {"name": "gmpy2", "version": "2.1.5", "file_name": "gmpy2-2.1.5-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "18fbce531d0ed7cab34a905fdca05dee971951c4d2e1c3409f3a93be606404ea", "package_type": "package", "imports": ["gmpy2"], "depends": []}, "gsw": {"name": "gsw", "version": "3.6.16", "file_name": "gsw-3.6.16-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "b2a647ed4620d18d5dc28eb275dfe68534d53f42d11d489fac4014da64d4df1a", "package_type": "package", "imports": ["gsw"], "depends": ["numpy"], "unvendored_tests": true}, "gsw-tests": {"name": "gsw-tests", "version": "3.6.16", "depends": ["gsw"], "imports": [], "file_name": "gsw-tests.tar", "install_dir": "site", "sha256": "1bd39e4c5ef7004e5f3c66798f0c91c32e67baac8988b1be67be24568b4ada73"}, "h5py": {"name": "h5py", "version": "3.7.0", "file_name": "h5py-3.7.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "e297b25411358a9fc61738dfb866733a525a7aad327aea5299a9b53c57e0fcf8", "package_type": "package", "imports": ["h5py"], "depends": ["numpy", "pkgconfig"], "unvendored_tests": true}, "h5py-tests": {"name": "h5py-tests", "version": "3.7.0", "depends": ["h5py"], "imports": [], "file_name": "h5py-tests.tar", "install_dir": "site", "sha256": "8924b238b6ca866c65d615138294da8a2373e12d4099206e4bd1b8e7373a9cb0"}, "hashlib": {"name": "hashlib", "version": "1.0.0", "file_name": "hashlib-1.0.0.zip", "install_dir": "stdlib", "sha256": "a4c370426f30b3b78267c6d000af5f390114edbf6e3ed2ee6afffdb155d7310b", "package_type": "cpython_module", "imports": ["_hashlib"], "shared_library": true, "depends": ["openssl"]}, "html5lib": {"name": "html5lib", "version": "1.1", "file_name": "html5lib-1.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "a0394c0cf4170b842c31604acdf9092e0c7195de09030ce8446d083c1d1e3605", "package_type": "package", "imports": ["html5lib"], "depends": ["webencodings", "six"]}, "idna": {"name": "idna", "version": "3.4", "file_name": "idna-3.4-py3-none-any.whl", "install_dir": "site", "sha256": "5d50b765545e9dc901a20f3e0fd2db1d6aae538905082bc6398581e9ed97addd", "package_type": "package", "imports": ["idna"], "depends": []}, "imageio": {"name": "imageio", "version": "2.27.0", "file_name": "imageio-2.27.0-py3-none-any.whl", "install_dir": "site", "sha256": "1ca79c16a2e1f72d064ef8c767c05ea935c4439c41ab2c796e013d7c552a7e60", "package_type": "package", "imports": ["imageio"], "depends": ["numpy", "pillow"]}, "iniconfig": {"name": "iniconfig", "version": "2.0.0", "file_name": "iniconfig-2.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "34fcd1814ca43b92f5cf49adf06df6bde28e7e15bdcb76c2728c463641b3c87a", "package_type": "package", "imports": ["iniconfig"], "depends": []}, "jedi": {"name": "jedi", "version": "0.18.2", "file_name": "jedi-0.18.2-py2.py3-none-any.whl", "install_dir": "site", "sha256": "7bf0dda2d0811cdb48d7f8ff101a874018c38ddd623d11bb8b574bac4e8f7ee7", "package_type": "package", "imports": ["jedi"], "depends": ["parso"], "unvendored_tests": true}, "jedi-tests": {"name": "jedi-tests", "version": "0.18.2", "depends": ["jedi"], "imports": [], "file_name": "jedi-tests.tar", "install_dir": "site", "sha256": "136080d4974609c69d2cd98eeb3666a50f925593b134ac2411446e9bbcddac50"}, "jinja2": {"name": "Jinja2", "version": "3.1.2", "file_name": "Jinja2-3.1.2-py3-none-any.whl", "install_dir": "site", "sha256": "1bdec1efdf3e5066e15937e135332de385815814635dcca91d01da1a6877c49b", "package_type": "package", "imports": ["jinja2"], "depends": ["markupsafe"]}, "joblib": {"name": "joblib", "version": "1.2.0", "file_name": "joblib-1.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "d55774381bbc1d5cda539dfff3cfd3ec7343558b72fe2016e9c604a3d64ef49e", "package_type": "package", "imports": ["joblib"], "depends": ["distutils"], "unvendored_tests": true}, "joblib-tests": {"name": "joblib-tests", "version": "1.2.0", "depends": ["joblib"], "imports": [], "file_name": "joblib-tests.tar", "install_dir": "site", "sha256": "711d54c7f8841886fe71b79e7fea31cab41f550942a103bdd4210c42db313f1f"}, "jsonschema": {"name": "jsonschema", "version": "4.17.3", "file_name": "jsonschema-4.17.3-py3-none-any.whl", "install_dir": "site", "sha256": "2ba446000ef62a524d803df73c66cc0fbca879bbecd4641f96106b75da00519c", "package_type": "package", "imports": ["jsonschema"], "depends": ["attrs", "pyrsistent"], "unvendored_tests": true}, "jsonschema-tests": {"name": "jsonschema-tests", "version": "4.17.3", "depends": ["jsonschema"], "imports": [], "file_name": "jsonschema-tests.tar", "install_dir": "site", "sha256": "575cd61b29c7ca2765a06898954b1572a81176e91367996740b0beea93eeb1b2"}, "kiwisolver": {"name": "kiwisolver", "version": "1.4.4", "file_name": "kiwisolver-1.4.4-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "ffc453278ef1b6fe5cd711ae1a4601f6eb34a2a165132691f4fb425cd8fa5c02", "package_type": "package", "imports": ["kiwisolver"], "depends": []}, "lazy-object-proxy": {"name": "lazy-object-proxy", "version": "1.9.0", "file_name": "lazy_object_proxy-1.9.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "947757f0b1eb08facbe10e89365c337ba629099d141f8990905793156b57364f", "package_type": "package", "imports": ["lazy_object_proxy"], "depends": []}, "libhdf5": {"name": "libhdf5", "version": "1.12.1", "file_name": "libhdf5-1.12.1.zip", "install_dir": "dynlib", "sha256": "82c3f61d6c848027c7f0846c36b90ad3019ff8bd5faf16000c22e5df1a32e228", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "libheif": {"name": "libheif", "version": "1.12.0", "file_name": "libheif-1.12.0.zip", "install_dir": "dynlib", "sha256": "a1d022b30729bcc0e01a02a1e3fff2c45cdda92424dc7097af845be9187b69a5", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "libmagic": {"name": "libmagic", "version": "5.42", "file_name": "libmagic-5.42.zip", "install_dir": "dynlib", "sha256": "9d122f5e9b8eeab6d967176fbac9010e7c738b19ead68fcc9300aa81f6a43032", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "lightgbm": {"name": "lightgbm", "version": "3.3.5", "file_name": "lightgbm-3.3.5-py3-none-any.whl", "install_dir": "site", "sha256": "c967a23eb5e99595b5be60583f693190b6d521588b58feab486a373c1a08e670", "package_type": "package", "imports": ["lightgbm"], "depends": ["numpy", "scipy", "scikit-learn"]}, "logbook": {"name": "logbook", "version": "1.5.3", "file_name": "Logbook-1.5.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "040aad033207e017d8c31bed425e8423ecb259a2d9fcde8295f230024ea9bde8", "package_type": "package", "imports": ["logbook"], "depends": []}, "lxml": {"name": "lxml", "version": "4.9.2", "file_name": "lxml-4.9.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "fc7ebb941035f77431fbb414189567fb7950977b590e1aa6962c56b8c2a933c8", "package_type": "package", "imports": ["lxml"], "depends": []}, "lzma": {"name": "lzma", "version": "1.0.0", "file_name": "lzma-1.0.0.zip", "install_dir": "stdlib", "sha256": "7b3c884eefcc5c0c112f38f48fa3534bc4a3eb4359f6cc9c51bdd33794bf16e7", "package_type": "cpython_module", "imports": ["lzma", "_lzma"], "shared_library": true, "depends": []}, "markupsafe": {"name": "MarkupSafe", "version": "2.1.2", "file_name": "MarkupSafe-2.1.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "2eb04b33f7345435db4cefb8a25041899072cd773ba78469a288e4e93548bffb", "package_type": "package", "imports": ["markupsafe"], "depends": []}, "matplotlib": {"name": "matplotlib", "version": "3.5.2", "file_name": "matplotlib-3.5.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "37069db35cc93571f069744dda2bcaeb931426daabeaa61f06b4b856af9c7611", "package_type": "package", "imports": ["pylab", "mpl_toolkits", "matplotlib"], "depends": ["cycler", "fonttools", "kiwisolver", "numpy", "packaging", "pillow", "pyparsing", "python-dateutil", "pytz", "matplotlib-pyodide"], "unvendored_tests": true}, "matplotlib-pyodide": {"name": "matplotlib-pyodide", "version": "0.1.1", "file_name": "matplotlib_pyodide-0.1.1-py3-none-any.whl", "install_dir": "site", "sha256": "f5647e0d112e6ba8a8854d1b1d4b04492362d8a1f60f47522cfe5bc7eada9fe7", "package_type": "package", "imports": ["matplotlib_pyodide"], "depends": []}, "matplotlib-tests": {"name": "matplotlib-tests", "version": "3.5.2", "depends": ["matplotlib"], "imports": [], "file_name": "matplotlib-tests.tar", "install_dir": "site", "sha256": "60399ed76c004725e8fcaaddc6307a95ee2505abd42c461b9fc59fc0d58ba992"}, "micropip": {"name": "micropip", "version": "0.3.0", "file_name": "micropip-0.3.0-py3-none-any.whl", "install_dir": "site", "sha256": "124360cf7b0ed813789c3753a05881d05b839424974c0fe6b0d62816761af3aa", "package_type": "package", "imports": ["micropip"], "depends": ["packaging"]}, "mne": {"name": "mne", "version": "1.3.1", "file_name": "mne-1.3.1-py3-none-any.whl", "install_dir": "site", "sha256": "e3c5b44fefbb01a91217bc341324e2d7e4d4519f70873db120b2241808c84b01", "package_type": "package", "imports": ["mne"], "depends": ["distutils", "numpy", "scipy", "setuptools", "decorator"], "unvendored_tests": true}, "mne-tests": {"name": "mne-tests", "version": "1.3.1", "depends": ["mne"], "imports": [], "file_name": "mne-tests.tar", "install_dir": "site", "sha256": "0126f3bebc459d3fa9f51e927486b0d128cfcee60821dd21253557bf29080fd2"}, "more-itertools": {"name": "more-itertools", "version": "9.1.0", "file_name": "more_itertools-9.1.0-py3-none-any.whl", "install_dir": "site", "sha256": "718ace52a4fa8fe238878685616d6ae67c285ef09dd9cde0b1e3bfc18047d710", "package_type": "package", "imports": ["more_itertools"], "depends": []}, "mpmath": {"name": "mpmath", "version": "1.3.0", "file_name": "mpmath-1.3.0-py3-none-any.whl", "install_dir": "site", "sha256": "95348ce87c7432277fb6f78d240907e8693e242fe849877bf38b6e6d9b6daeac", "package_type": "package", "imports": ["mpmath"], "depends": [], "unvendored_tests": true}, "mpmath-tests": {"name": "mpmath-tests", "version": "1.3.0", "depends": ["mpmath"], "imports": [], "file_name": "mpmath-tests.tar", "install_dir": "site", "sha256": "512093c04ba32f879fa83be7d2c9f5f9e441ac17483dd61831e5d8974068fd46"}, "msgpack": {"name": "msgpack", "version": "1.0.5", "file_name": "msgpack-1.0.5-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "4b8c0f4be375f9172cb4ef5d1214d380c3541eede689d761b4ac0b81bdd0e405", "package_type": "package", "imports": ["msgpack"], "depends": []}, "msprime": {"name": "msprime", "version": "1.2.0", "file_name": "msprime-1.2.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "5ba3c5c9b9942615c080167b492846d415979dacca55fe675bc9840afa3dd9dd", "package_type": "package", "imports": ["msprime"], "depends": ["numpy", "newick", "tskit", "demes"]}, "multidict": {"name": "multidict", "version": "6.0.4", "file_name": "multidict-6.0.4-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "e925660963d770c2845b3cd40dbb383cbbb94f8fe4b2d154bcbbff96e8c72723", "package_type": "package", "imports": ["multidict"], "depends": []}, "munch": {"name": "munch", "version": "2.5.0", "file_name": "munch-2.5.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "054689d52da888c9027f3bb2eb99383947f1bea649db980ec12e3bc309e00fec", "package_type": "package", "imports": ["munch"], "depends": ["setuptools", "six"]}, "mypy": {"name": "mypy", "version": "1.1.1", "file_name": "mypy-1.1.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "ceb100e770e8015aa8d7a508f2dc85ebe3d9013e2c9a640c122d487d715309bb", "package_type": "package", "imports": ["mypyc", "mypy"], "depends": [], "unvendored_tests": true}, "mypy-tests": {"name": "mypy-tests", "version": "1.1.1", "depends": ["mypy"], "imports": [], "file_name": "mypy-tests.tar", "install_dir": "site", "sha256": "bf78b4cd7b91aae85a2f0b7f14c30aebee009f1fbca7c1cf769064b0d9725032"}, "networkx": {"name": "networkx", "version": "3.0", "file_name": "networkx-3.0-py3-none-any.whl", "install_dir": "site", "sha256": "b19377d694111f061727411f94b35757bcba61292aa118d7c499b95349cd1567", "package_type": "package", "imports": ["networkx"], "depends": ["decorator", "setuptools", "matplotlib", "numpy"], "unvendored_tests": true}, "networkx-tests": {"name": "networkx-tests", "version": "3.0", "depends": ["networkx"], "imports": [], "file_name": "networkx-tests.tar", "install_dir": "site", "sha256": "238f32bd5e2627e354389ddfe1d3bfb0f4d03c43f33fdae98b3532b629e4ca70"}, "newick": {"name": "newick", "version": "1.9.0", "file_name": "newick-1.9.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "97fb7bcbb50ad375d0ab6c3a5b0e3e9fa7f04930e9507554a0b77d2514aeed70", "package_type": "package", "imports": ["newick"], "depends": []}, "nlopt": {"name": "nlopt", "version": "2.7.0", "file_name": "nlopt-2.7.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "6e64f0501adeac1c9a57c66799f0100a1a0d9ffa43f1345359743da069ed019e", "package_type": "package", "imports": ["nlopt"], "depends": ["numpy"]}, "nltk": {"name": "nltk", "version": "3.8.1", "file_name": "nltk-3.8.1-py3-none-any.whl", "install_dir": "site", "sha256": "d8d53f897c21b3d9d20c1ba3c70f6c2d213c7a88dae52339330c0aed552a30f8", "package_type": "package", "imports": ["nltk"], "depends": ["regex", "sqlite3"], "unvendored_tests": true}, "nltk-tests": {"name": "nltk-tests", "version": "3.8.1", "depends": ["nltk"], "imports": [], "file_name": "nltk-tests.tar", "install_dir": "site", "sha256": "3aea07c3ffcb19b9bcb5773759f6b7deac37fd6cb340279d395230e89f73956c"}, "nose": {"name": "nose", "version": "1.3.7", "file_name": "nose-1.3.7-py3-none-any.whl", "install_dir": "site", "sha256": "c61b69830b950c99b0b6257a953af47e49721fc8bf7cc2179d3c9f4c49277ec7", "package_type": "package", "imports": ["nose"], "depends": ["setuptools"]}, "numcodecs": {"name": "numcodecs", "version": "0.11.0", "file_name": "numcodecs-0.11.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "a1e9dd384bfa17033a415567bae9c72aef89959be3cfed76deb52a60929dfee6", "package_type": "package", "imports": ["numcodecs"], "depends": ["numpy", "msgpack"], "unvendored_tests": true}, "numcodecs-tests": {"name": "numcodecs-tests", "version": "0.11.0", "depends": ["numcodecs"], "imports": [], "file_name": "numcodecs-tests.tar", "install_dir": "site", "sha256": "c23c583e6a4360b46a9a6e8e0512628ef22a0ccd82a4d1c77bbae41de1c93f3c"}, "numpy": {"name": "numpy", "version": "1.24.2", "file_name": "numpy-1.24.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "6a7951039c7663ecdfc5adec25fd0fd5a132a1ef600333c3f75fd51360c9a6be", "package_type": "package", "imports": ["numpy"], "depends": [], "unvendored_tests": true}, "numpy-tests": {"name": "numpy-tests", "version": "1.24.2", "depends": ["numpy"], "imports": [], "file_name": "numpy-tests.tar", "install_dir": "site", "sha256": "1d583f083cb7a4aa2bf72a54112849ca1815f172bd1e7369fcc56cde3aa3321f"}, "opencv-python": {"name": "opencv-python", "version": "4.7.0.72", "file_name": "opencv_python-4.7.0.72-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "74b4b2bc1b4a3960b965052ae2e355092415faacf50f84a1d68318a94fd6c6c4", "package_type": "package", "imports": ["cv2"], "depends": ["numpy"]}, "openssl": {"name": "openssl", "version": "1.1.1n", "file_name": "openssl-1.1.1n.zip", "install_dir": "dynlib", "sha256": "df3b74c53113d5e08f42f4f7511c2731a468596fd45076f2ed578f2b9b8c1b15", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "optlang": {"name": "optlang", "version": "1.6.1", "file_name": "optlang-1.6.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "6642b41a90832ba218ed34ab675d2f986719602097562f026f4783940ff9a36a", "package_type": "package", "imports": ["optlang"], "depends": ["sympy", "six", "swiglpk"], "unvendored_tests": true}, "optlang-tests": {"name": "optlang-tests", "version": "1.6.1", "depends": ["optlang"], "imports": [], "file_name": "optlang-tests.tar", "install_dir": "site", "sha256": "2b4017e63e5ba6ff6346402b9757b122e06445abff789a933ad0b6693a2dbb4c"}, "packaging": {"name": "packaging", "version": "23.0", "file_name": "packaging-23.0-py3-none-any.whl", "install_dir": "site", "sha256": "fde3e9a95bea384eea9f28addd671575189b75ef9ced250908e3b0b5e3c9f4b1", "package_type": "package", "imports": ["packaging"], "depends": []}, "pandas": {"name": "pandas", "version": "1.5.3", "file_name": "pandas-1.5.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "780f886710344a707d0b605f0a96ffeded493dd3561cfda369ec5373dc85439b", "package_type": "package", "imports": ["pandas"], "depends": ["numpy", "python-dateutil", "pytz"], "unvendored_tests": true}, "pandas-tests": {"name": "pandas-tests", "version": "1.5.3", "depends": ["pandas"], "imports": [], "file_name": "pandas-tests.tar", "install_dir": "site", "sha256": "f5c8f0899bf90ffcbb01bf9bc567d452d54bc2952ca95918bb588d9871403259"}, "parso": {"name": "parso", "version": "0.8.3", "file_name": "parso-0.8.3-py2.py3-none-any.whl", "install_dir": "site", "sha256": "d20857011faa45d4e7af006642988c5440d7409262c8e35565fb7441893aec0f", "package_type": "package", "imports": ["parso"], "depends": []}, "patsy": {"name": "patsy", "version": "0.5.3", "file_name": "patsy-0.5.3-py2.py3-none-any.whl", "install_dir": "site", "sha256": "1e0972116461803d219f255c06f68de6ef1e460a9977200bbee6c9dcfd865be4", "package_type": "package", "imports": ["patsy"], "depends": ["numpy", "six"], "unvendored_tests": true}, "patsy-tests": {"name": "patsy-tests", "version": "0.5.3", "depends": ["patsy"], "imports": [], "file_name": "patsy-tests.tar", "install_dir": "site", "sha256": "56e8ef14f2b1126b97124afbf70c613b31a46bd329fda65cdff9625a9bc844bb"}, "pillow": {"name": "Pillow", "version": "9.1.1", "file_name": "PIL-9.1.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "b39f2bf914f8189807890fb4eadb962d0d6222fcf8a9cd488cbaa63930fc8eb2", "package_type": "package", "imports": ["PIL"], "depends": []}, "pillow_heif": {"name": "pillow_heif", "version": "0.8.0", "file_name": "pillow_heif-0.8.0-cp36-abi3-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "4088117680e88d6e92239fdb309593515e4f2b938a2aeae08ca4abcd49ed5b18", "package_type": "package", "imports": ["pillow_heif"], "depends": ["cffi", "pillow", "libheif"]}, "pkgconfig": {"name": "pkgconfig", "version": "1.5.5", "file_name": "pkgconfig-1.5.5-py3-none-any.whl", "install_dir": "site", "sha256": "e40124f5a9a4a68ececcd2edcdc0ea2582f1132c2d4f4e0fef24199c56ddb129", "package_type": "package", "imports": ["pkgconfig"], "depends": []}, "pluggy": {"name": "pluggy", "version": "1.0.0", "file_name": "pluggy-1.0.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "951b1e7328566ae1e15af959b067a082c39652be1aae82883a676e3958f7541d", "package_type": "package", "imports": ["pluggy"], "depends": []}, "py": {"name": "py", "version": "1.11.0", "file_name": "py-1.11.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "c94ade1586960794216552ddb68b36b96ba7b7d38107b6892fa7085714087592", "package_type": "package", "imports": ["py"], "depends": []}, "pyb2d": {"name": "pyb2d", "version": "0.7.2", "file_name": "b2d-0.7.4-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "e212c67a63aba86735dbb35a54743d2b2dbab1f5c52033becc05e3f859bf7b80", "package_type": "package", "imports": ["b2d"], "depends": ["numpy", "pydantic", "setuptools"]}, "pyclipper": {"name": "pyclipper", "version": "1.3.0.post4", "file_name": "pyclipper-1.3.0.post4-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "d6f1033967d4eaae688f3b23d1dcab59d6451041a2a26f13d81e8899d4e40cc5", "package_type": "package", "imports": ["pyclipper"], "depends": []}, "pycparser": {"name": "pycparser", "version": "2.21", "file_name": "pycparser-2.21-py2.py3-none-any.whl", "install_dir": "site", "sha256": "13b24dd319dc3c8ad6ce4cd280f3d49493730427628e975ff34e6767f007398b", "package_type": "package", "imports": ["pycparser"], "depends": []}, "pycryptodome": {"name": "pycryptodome", "version": "3.17", "file_name": "pycryptodome-3.17-cp35-abi3-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "0fc906f1c55d64e20b559e3cb913a39e4c0c3ee768bdbde7810ecabaab612fa4", "package_type": "package", "imports": ["Crypto"], "depends": [], "unvendored_tests": true}, "pycryptodome-tests": {"name": "pycryptodome-tests", "version": "3.17", "depends": ["pycryptodome"], "imports": [], "file_name": "pycryptodome-tests.tar", "install_dir": "site", "sha256": "b4c137e4685773affc487cd26676387d1b7aeff94d3aab7c34d90b023592aff8"}, "pydantic": {"name": "pydantic", "version": "1.10.7", "file_name": "pydantic-1.10.7-py3-none-any.whl", "install_dir": "site", "sha256": "0cb0651d26a68bcdbbe74dcd72b93154136954f851b456e00d2e1a444c5b3b30", "package_type": "package", "imports": ["pydantic"], "depends": ["typing-extensions"]}, "pydecimal": {"name": "pydecimal", "version": "1.0.0", "file_name": "pydecimal-1.0.0.zip", "install_dir": "stdlib", "sha256": "23faed7e1fbdf3a62fc0cd73f7c06c1c4c04dfbe5597e88d474fb65f8b04d6e5", "package_type": "cpython_module", "imports": ["_pydecimal"], "shared_library": true, "depends": []}, "pydoc_data": {"name": "pydoc_data", "version": "1.0.0", "file_name": "pydoc_data-1.0.0.zip", "install_dir": "stdlib", "sha256": "21f826f91b11450f51fdbc7b5fdc9d8e52574a6c0c3afb518dc6fe02a675a856", "package_type": "cpython_module", "imports": ["pydoc_data"], "shared_library": true, "depends": []}, "pyerfa": {"name": "pyerfa", "version": "2.0.0.3", "file_name": "pyerfa-2.0.0.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "13bcbd22eb56cb8b1500f6dc8eaa824c430e5d37cf8e11b8ec128f134c3ce94c", "package_type": "package", "imports": ["erfa"], "depends": ["numpy"], "unvendored_tests": true}, "pyerfa-tests": {"name": "pyerfa-tests", "version": "2.0.0.3", "depends": ["pyerfa"], "imports": [], "file_name": "pyerfa-tests.tar", "install_dir": "site", "sha256": "f76f72cc75d6a6eb04df374198fe6a13ffc5024dff0a58c90dcc3e91fd95dc6e"}, "pygments": {"name": "Pygments", "version": "2.14.0", "file_name": "Pygments-2.14.0-py3-none-any.whl", "install_dir": "site", "sha256": "9bc0dd8b66a1082bfa2d69f278b8e8bcd6fa1c38b478ae68f857779b0402f79c", "package_type": "package", "imports": ["pygments"], "depends": []}, "pyheif": {"name": "pyheif", "version": "0.7.1", "file_name": "pyheif-0.7.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "849a380333000e5c701260bcf3165c17619dfb58d58d34c6f285d5dc3298d0af", "package_type": "package", "imports": ["pyheif"], "depends": ["cffi"]}, "pyinstrument": {"name": "pyinstrument", "version": "4.4.0", "file_name": "pyinstrument-4.4.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "93e2b71e890e67640d58fd8af96cb2d2946340b9a9db543fde7d812912a13b52", "package_type": "package", "imports": ["pyinstrument"], "depends": []}, "pynacl": {"name": "pynacl", "version": "1.5.0", "file_name": "PyNaCl-1.5.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "a5310db6be1a23bcffdf5570512e85a57d2ec62fc1405efd20397619fae8a20e", "package_type": "package", "imports": ["nacl"], "depends": ["cffi"]}, "pyodide-http": {"name": "pyodide-http", "version": "0.2.0", "file_name": "pyodide_http-0.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "a984552694727de1262792464e0ca9374de18bb970b6fb0950b52d4747a505c2", "package_type": "package", "imports": ["pyodide_http"], "depends": []}, "pyparsing": {"name": "pyparsing", "version": "3.0.9", "file_name": "pyparsing-3.0.9-py3-none-any.whl", "install_dir": "site", "sha256": "dc71d68ff3e44e115c7cc2b6e91b585998b949884b200c1bef56f13296df53a1", "package_type": "package", "imports": ["pyparsing"], "depends": []}, "pyproj": {"name": "pyproj", "version": "3.4.1", "file_name": "pyproj-3.4.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "653e7679459c0fa56dee824a9f7ceb8872e439e400c77db0fb5de9cd7bd492e7", "package_type": "package", "imports": ["pyproj"], "depends": ["certifi", "sqlite3"]}, "pyrsistent": {"name": "pyrsistent", "version": "0.19.3", "file_name": "pyrsistent-0.19.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "a4f0fa973e8f02b4f3641b44d4fdd19a8c91b99f114216900647cf95b0018470", "package_type": "package", "imports": ["_pyrsistent_version", "pyrsistent"], "depends": []}, "pytest": {"name": "pytest", "version": "7.2.2", "file_name": "pytest-7.2.2-py3-none-any.whl", "install_dir": "site", "sha256": "bce643f25cb921bc8f34c07f5a8e38188c6262775bd31ef6599e81ee62f316a4", "package_type": "package", "imports": ["_pytest", "pytest"], "depends": ["atomicwrites", "attrs", "more-itertools", "pluggy", "py", "setuptools", "six", "iniconfig", "exceptiongroup"]}, "pytest-benchmark": {"name": "pytest-benchmark", "version": "4.0.0", "file_name": "pytest_benchmark-4.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "d050294769e431f276ded668a8046c03495334569c63e99c3a3b81b6823f8219", "package_type": "package", "imports": ["pytest_benchmark"], "depends": []}, "python-dateutil": {"name": "python-dateutil", "version": "2.8.2", "file_name": "python_dateutil-2.8.2-py2.py3-none-any.whl", "install_dir": "site", "sha256": "75725e080eb8b5c1df2fc98f8c76f4fe07243d85b4fea8f48d32a1fafd7dddc1", "package_type": "package", "imports": ["dateutil"], "depends": ["six"]}, "python-magic": {"name": "python-magic", "version": "0.4.27", "file_name": "python_magic-0.4.27-py2.py3-none-any.whl", "install_dir": "site", "sha256": "c02035b62a3706d709478d4b3f7bcbf40d0ef89bf3eba738349ad285ad10b90c", "package_type": "package", "imports": ["magic"], "depends": ["libmagic"]}, "python-sat": {"name": "python-sat", "version": "0.1.7.dev26", "file_name": "python_sat-0.1.7.dev26-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "453ab67d8c4065af7321f2c8d8eae635f357da77bad77715e411eb73dab76b00", "package_type": "package", "imports": ["pysat"], "depends": ["six"]}, "python_solvespace": {"name": "python_solvespace", "version": "3.0.8", "file_name": "python_solvespace-3.0.8-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "af899e75027e47d86fb84322c1ae04c21d0b98b6e010a2bdfcb8533152e90722", "package_type": "package", "imports": ["python_solvespace"], "depends": []}, "pytz": {"name": "pytz", "version": "2023.3", "file_name": "pytz-2023.3-py2.py3-none-any.whl", "install_dir": "site", "sha256": "a4eae24ca96084afaaf062339573141d746dcb1b1225b5a0ed1890117bb86780", "package_type": "package", "imports": ["pytz"], "depends": []}, "pywavelets": {"name": "pywavelets", "version": "1.4.1", "file_name": "PyWavelets-1.4.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "25b90e69bbc4ce6b64a454d32f491db7b603884358ddc609a0d64c98eab97589", "package_type": "package", "imports": ["pywt"], "depends": ["distutils", "numpy", "matplotlib", "scipy"], "unvendored_tests": true}, "pywavelets-tests": {"name": "pywavelets-tests", "version": "1.4.1", "depends": ["pywavelets"], "imports": [], "file_name": "pywavelets-tests.tar", "install_dir": "site", "sha256": "a0d3f57e64a4f896cc4b15bbc5506571c86907445689070eea498620da121ecb"}, "pyxel": {"name": "pyxel", "version": "1.9.10", "file_name": "pyxel-1.9.10-cp37-abi3-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1928a5a7d6a51f4f465d1c97735a5313805144d6b6b875513d71d412471aa04a", "package_type": "package", "imports": ["pyxel"], "depends": []}, "pyyaml": {"name": "pyyaml", "version": "6.0", "file_name": "PyYAML-6.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "94807d0dc95e230b72ff367c9ca2e7159777d5fa73cbcbe077e5c3790d4c0cf4", "package_type": "package", "imports": ["_yaml", "yaml"], "depends": []}, "rebound": {"name": "rebound", "version": "3.19.8", "file_name": "rebound-3.19.8-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "a0f6da7d4f82c48295ef605350ee126bc692f555bbb4759f9eac63b02e567bef", "package_type": "package", "imports": ["rebound"], "depends": ["numpy"]}, "reboundx": {"name": "reboundx", "version": "3.7.1", "file_name": "reboundx-3.7.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "4da0d905df67d92bc102583fd4165439b6874ad0640c6305a044af7799351438", "package_type": "package", "imports": ["reboundx"], "depends": ["rebound", "numpy"]}, "regex": {"name": "regex", "version": "2023.3.23", "file_name": "regex-2023.3.23-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "2d7c5b8b30c9a36f6e9e4f70c30d860b5a390538a66dd6d67145f4cb1028d491", "package_type": "package", "imports": ["regex"], "depends": [], "unvendored_tests": true}, "regex-tests": {"name": "regex-tests", "version": "2023.3.23", "depends": ["regex"], "imports": [], "file_name": "regex-tests.tar", "install_dir": "site", "sha256": "4faa8eb22c0067456c01391afb69aa065c978b0870ffbca40f2fce30e892b221"}, "retrying": {"name": "retrying", "version": "1.3.4", "file_name": "retrying-1.3.4-py3-none-any.whl", "install_dir": "site", "sha256": "99fca4f62bce193f419cf5a78c3f819215b8d9ddb35f9e5e287c07318bb42f16", "package_type": "package", "imports": ["retrying"], "depends": ["six"]}, "robotraconteur": {"name": "RobotRaconteur", "version": "0.15.1", "file_name": "RobotRaconteur-0.15.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "159c088eb232a524378b5d7feda3de7bb93b19998a80ba47c44f3c907f4447bd", "package_type": "package", "imports": ["RobotRaconteur"], "depends": ["numpy"]}, "ruamel.yaml": {"name": "ruamel.yaml", "version": "0.17.21", "file_name": "ruamel.yaml-0.17.21-py3-none-any.whl", "install_dir": "site", "sha256": "d0a841e28eedb02d315c81650f0163fd391800ba1552a82af6ac3f3f6cb64516", "package_type": "package", "imports": ["ruamel"], "depends": []}, "scikit-image": {"name": "scikit-image", "version": "0.19.3", "file_name": "scikit_image-0.19.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1d44d874da0e982cd9e5240f7a30049353b48ad92d1500d030d5928d3dd158da", "package_type": "package", "imports": ["skimage"], "depends": ["packaging", "numpy", "scipy", "networkx", "pillow", "imageio", "pywavelets"], "unvendored_tests": true}, "scikit-image-tests": {"name": "scikit-image-tests", "version": "0.19.3", "depends": ["scikit-image"], "imports": [], "file_name": "scikit-image-tests.tar", "install_dir": "site", "sha256": "1970f17bb68d670860834e5932679b384a37036b1c840a71a64cab5146fba788"}, "scikit-learn": {"name": "scikit-learn", "version": "1.2.2", "file_name": "scikit_learn-1.2.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "9e55d84754a2af4176badd6a5adb60a5c222a5d2662bc0b246db3aded36011ec", "package_type": "package", "imports": ["sklearn"], "depends": ["scipy", "joblib", "threadpoolctl"], "unvendored_tests": true}, "scikit-learn-tests": {"name": "scikit-learn-tests", "version": "1.2.2", "depends": ["scikit-learn"], "imports": [], "file_name": "scikit-learn-tests.tar", "install_dir": "site", "sha256": "da513053dcfefd1a23d0a9deaa872b390fe202e67a950d70e44a0e1058d145c7"}, "scipy": {"name": "scipy", "version": "1.9.3", "file_name": "scipy-1.9.3-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "5f80f77bd9eb0faf8f078b1e4fcbdff1cb0b30bcd68dc29a0d87934d62e23f24", "package_type": "package", "imports": ["scipy"], "depends": ["numpy", "clapack"], "unvendored_tests": true}, "scipy-tests": {"name": "scipy-tests", "version": "1.9.3", "depends": ["scipy"], "imports": [], "file_name": "scipy-tests.tar", "install_dir": "site", "sha256": "58531c094db4d261176e47f1cd53790ea4f9cb795f1002ac2debfe53f7b629d7"}, "setuptools": {"name": "setuptools", "version": "67.6.1", "file_name": "setuptools-67.6.1-py3-none-any.whl", "install_dir": "site", "sha256": "cdb39ced5d043adcca8c9b1784e2c4a46662a7c6f447d317f812cc2ebac57fc7", "package_type": "package", "imports": ["_distutils_hack", "pkg_resources", "setuptools"], "depends": ["distutils", "pyparsing"]}, "shapely": {"name": "shapely", "version": "1.8.2", "file_name": "Shapely-1.8.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "5525c8bd83d5b1652c9f161da4d40ef68664853a63781d5ec86327775832925d", "package_type": "package", "imports": ["shapely"], "depends": ["numpy"], "unvendored_tests": true}, "shapely-tests": {"name": "shapely-tests", "version": "1.8.2", "depends": ["shapely"], "imports": [], "file_name": "shapely-tests.tar", "install_dir": "site", "sha256": "9a4a49526dc1c8b9fc1542d8726c20e07df1c2ad27d389326218143da8541e71"}, "sharedlib-test": {"name": "sharedlib-test", "version": "1.0", "file_name": "sharedlib-test-1.0.zip", "install_dir": "dynlib", "sha256": "393ed7af1cb60e6b334db51b55c6f5da717da9c1f5603387684d7ecf2f7a5613", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": []}, "sharedlib-test-py": {"name": "sharedlib-test-py", "version": "1.0", "file_name": "sharedlib_test_py-1.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "84d4f61abe004daf9433ef9990add01739e1b03c42c0274bd8fd34891afa1de2", "package_type": "package", "imports": ["sharedlib_test"], "depends": ["sharedlib-test"]}, "six": {"name": "six", "version": "1.16.0", "file_name": "six-1.16.0-py2.py3-none-any.whl", "install_dir": "site", "sha256": "955ec2fb804af56af215450a5c00d18607b8d8ae43f0b4f367aa5b7d8ffe3465", "package_type": "package", "imports": ["six"], "depends": []}, "smart_open": {"name": "smart_open", "version": "6.3.0", "file_name": "smart_open-6.3.0-py3-none-any.whl", "install_dir": "site", "sha256": "3b0c209b4a556a07d1aef9e0e43d0e36e88012364a4246c512263dfdb5f9ee08", "package_type": "package", "imports": ["smart_open"], "depends": []}, "soupsieve": {"name": "soupsieve", "version": "2.4", "file_name": "soupsieve-2.4-py3-none-any.whl", "install_dir": "site", "sha256": "0c56c2a304d94bd69cfd8299ad31f4fe6a388d731b98c54137ea5831e1df1f37", "package_type": "package", "imports": ["soupsieve"], "depends": []}, "sqlalchemy": {"name": "sqlalchemy", "version": "2.0.7", "file_name": "SQLAlchemy-2.0.7-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1c0a74c9698711e29c9063ce0f3add3c0a397c82c82c53f1d3ce1fc5bac4d3c4", "package_type": "package", "imports": ["sqlalchemy"], "depends": ["sqlite3", "typing-extensions"], "unvendored_tests": true}, "sqlalchemy-tests": {"name": "sqlalchemy-tests", "version": "2.0.7", "depends": ["sqlalchemy"], "imports": [], "file_name": "sqlalchemy-tests.tar", "install_dir": "site", "sha256": "45d9ef32d65d004c958cd9e8a17166bb49c602442da299fb846eecb0695f60d1"}, "sqlite3": {"name": "sqlite3", "version": "1.0.0", "file_name": "sqlite3-1.0.0.zip", "install_dir": "stdlib", "sha256": "e9d8827b70c2a8d8c1f18136d2d225fb7aefb657b4e3400da26c4faa009fb883", "package_type": "cpython_module", "imports": ["sqlite3", "_sqlite3"], "shared_library": true, "depends": []}, "ssl": {"name": "ssl", "version": "1.0.0", "file_name": "ssl-1.0.0.zip", "install_dir": "stdlib", "sha256": "d593ce489f830300fa1fb3185810b6f03a4e397185af7ac006a697395a9c4d56", "package_type": "cpython_module", "imports": ["ssl", "_ssl"], "shared_library": true, "depends": ["openssl"]}, "statsmodels": {"name": "statsmodels", "version": "0.13.5", "file_name": "statsmodels-0.13.5-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1d815f9d792052472c2e4d24febca912b7e2fc9df4e6623d6b0a492c4bca6a48", "package_type": "package", "imports": ["statsmodels"], "depends": ["distutils", "numpy", "scipy", "pandas", "patsy", "packaging"], "unvendored_tests": true}, "statsmodels-tests": {"name": "statsmodels-tests", "version": "0.13.5", "depends": ["statsmodels"], "imports": [], "file_name": "statsmodels-tests.tar", "install_dir": "site", "sha256": "f9f16d639377e9b4007509c6ed0b6191a9a770426989d1dba33f48212cd459f1"}, "suitesparse": {"name": "suitesparse", "version": "5.11.0", "file_name": "suitesparse-5.11.0.zip", "install_dir": "dynlib", "sha256": "aaef623eae5da0b97afd56fe3d8bf69f030caab7888c5e54c01f5a56d031e18f", "package_type": "shared_library", "imports": [], "shared_library": true, "depends": ["clapack"]}, "svgwrite": {"name": "svgwrite", "version": "1.4.3", "file_name": "svgwrite-1.4.3-py3-none-any.whl", "install_dir": "site", "sha256": "d7b60d3cc1bd26d7b5dec5778ea52089b3e483fabac08a3dda5d8d7387be9f50", "package_type": "package", "imports": ["svgwrite"], "depends": []}, "swiglpk": {"name": "swiglpk", "version": "5.0.8", "file_name": "swiglpk-5.0.8-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "1be1fb8d79188982824fba1eb67b2227f0ef58b6e1b45d67df7744610ad450e3", "package_type": "package", "imports": ["swiglpk"], "depends": []}, "sympy": {"name": "sympy", "version": "1.11.1", "file_name": "sympy-1.11.1-py3-none-any.whl", "install_dir": "site", "sha256": "d0524601469d88ea413c1a554b3e64eeca9057f5cf3e6e33e02d15b13e9edaac", "package_type": "package", "imports": ["isympy", "sympy"], "depends": ["distutils", "mpmath"], "unvendored_tests": true}, "sympy-tests": {"name": "sympy-tests", "version": "1.11.1", "depends": ["sympy"], "imports": [], "file_name": "sympy-tests.tar", "install_dir": "site", "sha256": "c341da55ac37e3bb78e1d6a498e83b4cb0143cfceaf792e52bfaed9c0985337b"}, "tblib": {"name": "tblib", "version": "1.7.0", "file_name": "pyodide_tblib-1.7.1-py3-none-any.whl", "install_dir": "site", "sha256": "d17a7b8db2c97b5b68cc8bd1f8f569ecadfa629d6a2cf6530551aab723f4810a", "package_type": "package", "imports": ["tblib"], "depends": []}, "termcolor": {"name": "termcolor", "version": "2.2.0", "file_name": "termcolor-2.2.0-py3-none-any.whl", "install_dir": "site", "sha256": "ebdeb0c211e7821f30b83ea9822f291b2f4973f5713a4eb958e4199f2c6a8a09", "package_type": "package", "imports": ["termcolor"], "depends": []}, "test": {"name": "test", "version": "1.0.0", "file_name": "test-1.0.0.zip", "install_dir": "stdlib", "sha256": "d49d8b153aa96100b870daf7f2d4db25565eaef15456804a443b48b47e26c0b8", "package_type": "cpython_module", "imports": ["test"], "shared_library": true, "depends": []}, "threadpoolctl": {"name": "threadpoolctl", "version": "3.1.0", "file_name": "threadpoolctl-3.1.0-py3-none-any.whl", "install_dir": "site", "sha256": "3da4e97b30f6bf5ccdc9b80dde5c70b6642c29c428aa085f838d5fb06f0eaa4f", "package_type": "package", "imports": ["threadpoolctl"], "depends": []}, "tomli": {"name": "tomli", "version": "2.0.1", "file_name": "tomli-2.0.1-py3-none-any.whl", "install_dir": "site", "sha256": "44b64defbc446081e52f3afc3d9651cf1e6208cd6564c0fdec281f5b29a0c6c7", "package_type": "package", "imports": ["tomli"], "depends": []}, "tomli-w": {"name": "tomli-w", "version": "1.0.0", "file_name": "tomli_w-1.0.0-py3-none-any.whl", "install_dir": "site", "sha256": "1837ade5846348faa7fd19f34a8f574c467046d65977f982bd878d388b51759f", "package_type": "package", "imports": ["tomli_w"], "depends": []}, "toolz": {"name": "toolz", "version": "0.12.0", "file_name": "toolz-0.12.0-py3-none-any.whl", "install_dir": "site", "sha256": "c8ed52772f0da607c175eca58440ac2c8b41f1459ffcbb4acc9842cc87fcf893", "package_type": "package", "imports": ["tlz", "toolz"], "depends": [], "unvendored_tests": true}, "toolz-tests": {"name": "toolz-tests", "version": "0.12.0", "depends": ["toolz"], "imports": [], "file_name": "toolz-tests.tar", "install_dir": "site", "sha256": "87307a7fd4d2c577a8b866c9c7e3092596a9b8e0a8967a8c370d613c53742db9"}, "tqdm": {"name": "tqdm", "version": "4.65.0", "file_name": "tqdm-4.65.0-py3-none-any.whl", "install_dir": "site", "sha256": "b8fd06ceff7dd7940b90ab162d8fb04b2e72a2eb7475913ad7f921f5d2522a61", "package_type": "package", "imports": ["tqdm"], "depends": []}, "traits": {"name": "traits", "version": "6.4.1", "file_name": "traits-6.4.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "6bc77129a0788113442b4479146c008468021cf12c7e58a9304690b93aa1f424", "package_type": "package", "imports": ["traits"], "depends": [], "unvendored_tests": true}, "traits-tests": {"name": "traits-tests", "version": "6.4.1", "depends": ["traits"], "imports": [], "file_name": "traits-tests.tar", "install_dir": "site", "sha256": "c66a10312c364eb5ae3f6154c2812606f1f8c87cc8f30dc9588c1b0c472fe116"}, "tskit": {"name": "tskit", "version": "0.5.4", "file_name": "tskit-0.5.4-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "33cd9283f0600f2b44caf59bbd7c43fa2f0b116b63ffb107f736ae39743238d1", "package_type": "package", "imports": ["tskit"], "depends": ["numpy", "svgwrite", "jsonschema"]}, "typing-extensions": {"name": "typing-extensions", "version": "4.5.0", "file_name": "typing_extensions-4.5.0-py3-none-any.whl", "install_dir": "site", "sha256": "0c595fee921eac813c62fa22e23a1285e7993efe5d3f335a0d74e84187fa46df", "package_type": "package", "imports": ["typing_extensions"], "depends": []}, "uncertainties": {"name": "uncertainties", "version": "3.1.7", "file_name": "uncertainties-3.1.7-py2.py3-none-any.whl", "install_dir": "site", "sha256": "ddc579ad0f5f6b7f63f9a9cafbc5905c0922b8714eb42d083858a757ef3eb1f4", "package_type": "package", "imports": ["uncertainties"], "depends": ["future"], "unvendored_tests": true}, "uncertainties-tests": {"name": "uncertainties-tests", "version": "3.1.7", "depends": ["uncertainties"], "imports": [], "file_name": "uncertainties-tests.tar", "install_dir": "site", "sha256": "311f7802f94fd785ef959c55684c400ce8228e8b1317fac76018a98e50580585"}, "unyt": {"name": "unyt", "version": "2.9.5", "file_name": "unyt-2.9.5-py2.py3-none-any.whl", "install_dir": "site", "sha256": "bd28c2d41793b80771ce514b02ec1e1f990691f64de0fd3df9f3974b6fc7e442", "package_type": "package", "imports": ["unyt"], "depends": ["numpy", "sympy"], "unvendored_tests": true}, "unyt-tests": {"name": "unyt-tests", "version": "2.9.5", "depends": ["unyt"], "imports": [], "file_name": "unyt-tests.tar", "install_dir": "site", "sha256": "2dd019f5949cc50e3c27ad24b7240835274103f4d9d8445ed2e1366f6cfa816b"}, "webencodings": {"name": "webencodings", "version": "0.5.1", "file_name": "webencodings-0.5.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "cd2e97bb7c2c9007e0fcb62028be26a59b10173ed232f0759224b0073dd4da76", "package_type": "package", "imports": ["webencodings"], "depends": []}, "wrapt": {"name": "wrapt", "version": "1.15.0", "file_name": "wrapt-1.15.0-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "3bb733e04644b35d39b5027aea6d3a982c994ea948ca5817acb6ae166e7f19f3", "package_type": "package", "imports": ["wrapt"], "depends": []}, "xarray": {"name": "xarray", "version": "2023.3.0", "file_name": "xarray-2023.3.0-py3-none-any.whl", "install_dir": "site", "sha256": "525ad4f2e305ffa934cabf27414566519a4255af8b93ec5e26fba0bf4dcabc5c", "package_type": "package", "imports": ["xarray"], "depends": ["numpy", "packaging", "pandas"], "unvendored_tests": true}, "xarray-tests": {"name": "xarray-tests", "version": "2023.3.0", "depends": ["xarray"], "imports": [], "file_name": "xarray-tests.tar", "install_dir": "site", "sha256": "5c3af34424ca195d19c1846ca2736343c907b949ef09dd3ae038b14bc00af996"}, "xgboost": {"name": "xgboost", "version": "1.6.1", "file_name": "xgboost-1.6.1-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "cd0ab45e7d8771d5086dad3688f1a5e97377e31d1045099122b16de916cc62e3", "package_type": "package", "imports": ["xgboost"], "depends": ["numpy", "scipy", "setuptools"]}, "xlrd": {"name": "xlrd", "version": "2.0.1", "file_name": "xlrd-2.0.1-py2.py3-none-any.whl", "install_dir": "site", "sha256": "dea4bb92dc817de48496d34f15cf5f60b70b72344afc97d8116fdf9aeb86e3eb", "package_type": "package", "imports": ["xlrd"], "depends": []}, "yarl": {"name": "yarl", "version": "1.8.2", "file_name": "yarl-1.8.2-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "c5a6df5964bfc0fcb0d2e5e217f087e9ea218cc8b4d2815315c9dee418ffd0c0", "package_type": "package", "imports": ["yarl"], "depends": ["multidict", "idna"]}, "yt": {"name": "yt", "version": "4.1.4", "file_name": "yt-4.1.4-cp311-cp311-emscripten_3_1_32_wasm32.whl", "install_dir": "site", "sha256": "66b9daa32b5f52ccc0813ff971483b6e820cbc4b962a6cb5d423ef98436cba96", "package_type": "package", "imports": ["yt"], "depends": ["numpy", "matplotlib", "sympy", "setuptools", "packaging", "unyt", "cmyt", "colorspacious", "tqdm", "tomli", "tomli-w"]}, "zarr": {"name": "zarr", "version": "2.13.3", "file_name": "zarr-2.13.3-py3-none-any.whl", "install_dir": "site", "sha256": "b93603f1684eb980a4237db33902afd4fbae669f46893259fee251c93d29b8f1", "package_type": "package", "imports": ["zarr"], "depends": ["numpy", "asciitree", "numcodecs"], "unvendored_tests": true}, "zarr-tests": {"name": "zarr-tests", "version": "2.13.3", "depends": ["zarr"], "imports": [], "file_name": "zarr-tests.tar", "install_dir": "site", "sha256": "fefaa1c868b55a23c3a9fd70c2aca1fcd2be3fc27e5e4901a7e7bc3886578439"}}}
|