-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdependencies.ts
More file actions
35 lines (29 loc) · 944 Bytes
/
dependencies.ts
File metadata and controls
35 lines (29 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Auto-generated by scripts/extract.py - DO NOT EDIT
// Source: scripts/config/requirements-pyodide.txt, scripts/config/pyodide.json
export const PATHVIEW_VERSION = '0.6.1';
export const PYODIDE_VERSION = '0.26.2';
export const PYODIDE_CDN_URL = `https://cdn.jsdelivr.net/pyodide/v${PYODIDE_VERSION}/full/pyodide.mjs`;
export const PYODIDE_PRELOAD = ["numpy", "scipy", "micropip"] as const;
/** Package versions extracted at build time (pinned for runtime) */
export const EXTRACTED_VERSIONS: Record<string, string> = {"pathsim": "0.16.8.dev3", "pathsim_chem": "0.2rc3"};
export interface PackageConfig {
pip: string;
pre: boolean;
required: boolean;
import: string;
}
export const PYTHON_PACKAGES: PackageConfig[] =
[
{
"pip": "pathsim",
"required": true,
"pre": true,
"import": "pathsim"
},
{
"pip": "pathsim-chem==0.2rc3",
"required": false,
"pre": true,
"import": "pathsim_chem"
}
];