more-compute 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

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.
Files changed (67) hide show
  1. frontend/.DS_Store +0 -0
  2. frontend/.gitignore +41 -0
  3. frontend/README.md +36 -0
  4. frontend/__init__.py +1 -0
  5. frontend/app/favicon.ico +0 -0
  6. frontend/app/globals.css +1537 -0
  7. frontend/app/layout.tsx +173 -0
  8. frontend/app/page.tsx +11 -0
  9. frontend/components/AddCellButton.tsx +42 -0
  10. frontend/components/Cell.tsx +244 -0
  11. frontend/components/CellButton.tsx +58 -0
  12. frontend/components/CellOutput.tsx +70 -0
  13. frontend/components/ErrorDisplay.tsx +208 -0
  14. frontend/components/ErrorModal.tsx +154 -0
  15. frontend/components/MarkdownRenderer.tsx +84 -0
  16. frontend/components/Notebook.tsx +520 -0
  17. frontend/components/Sidebar.tsx +46 -0
  18. frontend/components/popups/ComputePopup.tsx +879 -0
  19. frontend/components/popups/FilterPopup.tsx +427 -0
  20. frontend/components/popups/FolderPopup.tsx +171 -0
  21. frontend/components/popups/MetricsPopup.tsx +168 -0
  22. frontend/components/popups/PackagesPopup.tsx +112 -0
  23. frontend/components/popups/PythonPopup.tsx +292 -0
  24. frontend/components/popups/SettingsPopup.tsx +68 -0
  25. frontend/eslint.config.mjs +25 -0
  26. frontend/lib/api.ts +469 -0
  27. frontend/lib/settings.ts +87 -0
  28. frontend/lib/websocket-native.ts +202 -0
  29. frontend/lib/websocket.ts +134 -0
  30. frontend/next-env.d.ts +6 -0
  31. frontend/next.config.mjs +17 -0
  32. frontend/next.config.ts +7 -0
  33. frontend/package-lock.json +5676 -0
  34. frontend/package.json +41 -0
  35. frontend/postcss.config.mjs +5 -0
  36. frontend/public/assets/icons/add.svg +1 -0
  37. frontend/public/assets/icons/check.svg +1 -0
  38. frontend/public/assets/icons/copy.svg +1 -0
  39. frontend/public/assets/icons/folder.svg +1 -0
  40. frontend/public/assets/icons/metric.svg +1 -0
  41. frontend/public/assets/icons/packages.svg +1 -0
  42. frontend/public/assets/icons/play.svg +1 -0
  43. frontend/public/assets/icons/python.svg +265 -0
  44. frontend/public/assets/icons/setting.svg +1 -0
  45. frontend/public/assets/icons/stop.svg +1 -0
  46. frontend/public/assets/icons/trash.svg +1 -0
  47. frontend/public/assets/icons/up-down.svg +1 -0
  48. frontend/public/assets/icons/x.svg +1 -0
  49. frontend/public/file.svg +1 -0
  50. frontend/public/fonts/Fira.ttf +0 -0
  51. frontend/public/fonts/Tiempos.woff2 +0 -0
  52. frontend/public/fonts/VeraMono.ttf +0 -0
  53. frontend/public/globe.svg +1 -0
  54. frontend/public/next.svg +1 -0
  55. frontend/public/vercel.svg +1 -0
  56. frontend/public/window.svg +1 -0
  57. frontend/tailwind.config.ts +29 -0
  58. frontend/tsconfig.json +27 -0
  59. frontend/types/notebook.ts +58 -0
  60. kernel_run.py +6 -0
  61. {more_compute-0.1.2.dist-info → more_compute-0.1.3.dist-info}/METADATA +1 -1
  62. more_compute-0.1.3.dist-info/RECORD +85 -0
  63. {more_compute-0.1.2.dist-info → more_compute-0.1.3.dist-info}/top_level.txt +1 -0
  64. more_compute-0.1.2.dist-info/RECORD +0 -26
  65. {more_compute-0.1.2.dist-info → more_compute-0.1.3.dist-info}/WHEEL +0 -0
  66. {more_compute-0.1.2.dist-info → more_compute-0.1.3.dist-info}/entry_points.txt +0 -0
  67. {more_compute-0.1.2.dist-info → more_compute-0.1.3.dist-info}/licenses/LICENSE +0 -0
frontend/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "frontend",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "next dev --turbopack",
7
+ "build": "next build --turbopack",
8
+ "start": "next start",
9
+ "lint": "eslint"
10
+ },
11
+ "dependencies": {
12
+ "@codemirror/lang-markdown": "^6.3.4",
13
+ "@codemirror/lang-python": "^6.2.1",
14
+ "@codemirror/theme-one-dark": "^6.1.3",
15
+ "@hugeicons/core-free-icons": "^1.1.0",
16
+ "@hugeicons/react": "^1.1.1",
17
+ "@radix-ui/react-icons": "^1.3.2",
18
+ "@types/socket.io-client": "^1.4.36",
19
+ "@uiw/react-codemirror": "^4.25.2",
20
+ "axios": "^1.12.2",
21
+ "codemirror": "^5.65.2",
22
+ "framer-motion": "^12.23.22",
23
+ "lucide-react": "^0.544.0",
24
+ "next": "15.5.4",
25
+ "react": "19.1.0",
26
+ "react-dom": "19.1.0",
27
+ "socket.io-client": "^4.8.1",
28
+ "sortablejs": "^1.15.3"
29
+ },
30
+ "devDependencies": {
31
+ "@eslint/eslintrc": "^3",
32
+ "@tailwindcss/postcss": "^4",
33
+ "@types/node": "^20",
34
+ "@types/react": "^19",
35
+ "@types/react-dom": "^19",
36
+ "eslint": "^9",
37
+ "eslint-config-next": "15.5.4",
38
+ "tailwindcss": "^4",
39
+ "typescript": "^5"
40
+ }
41
+ }
@@ -0,0 +1,5 @@
1
+ const config = {
2
+ plugins: ["@tailwindcss/postcss"],
3
+ };
4
+
5
+ export default config;
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-fading-plus-icon lucide-circle-fading-plus"><path d="M12 2a10 10 0 0 1 7.38 16.75"/><path d="M12 8v8"/><path d="M16 12H8"/><path d="M2.5 8.875a10 10 0 0 0-.5 3"/><path d="M2.83 16a10 10 0 0 0 2.43 3.4"/><path d="M4.636 5.235a10 10 0 0 1 .891-.857"/><path d="M8.644 21.42a10 10 0 0 0 7.631-.38"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-check-icon lucide-check"><path d="M20 6 9 17l-5-5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-copy-icon lucide-copy"><rect width="14" height="14" x="8" y="8" rx="2" ry="2"/><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-closed-icon lucide-folder-closed"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M2 10h20"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chart-area-icon lucide-chart-area"><path d="M3 3v16a2 2 0 0 0 2 2h16"/><path d="M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-package-icon lucide-package"><path d="M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"/><path d="M12 22V12"/><polyline points="3.29 7 12 12 20.71 7"/><path d="m7.5 4.27 9 5.15"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-play-icon lucide-play"><path d="M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"/></svg>
@@ -0,0 +1,265 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.0"
6
+ id="svg2"
7
+ sodipodi:version="0.32"
8
+ inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
9
+ sodipodi:docname="python-logo-only.svg"
10
+ width="83.371017pt"
11
+ height="101.00108pt"
12
+ inkscape:export-filename="python-logo-only.png"
13
+ inkscape:export-xdpi="232.44"
14
+ inkscape:export-ydpi="232.44"
15
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
16
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
17
+ xmlns:xlink="http://www.w3.org/1999/xlink"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ xmlns:svg="http://www.w3.org/2000/svg"
20
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
21
+ xmlns:cc="http://creativecommons.org/ns#"
22
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
23
+ <metadata
24
+ id="metadata371">
25
+ <rdf:RDF>
26
+ <cc:Work
27
+ rdf:about="">
28
+ <dc:format>image/svg+xml</dc:format>
29
+ <dc:type
30
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
31
+ </cc:Work>
32
+ </rdf:RDF>
33
+ </metadata>
34
+ <sodipodi:namedview
35
+ inkscape:window-height="2080"
36
+ inkscape:window-width="1976"
37
+ inkscape:pageshadow="2"
38
+ inkscape:pageopacity="0.0"
39
+ guidetolerance="10.0"
40
+ gridtolerance="10.0"
41
+ objecttolerance="10.0"
42
+ borderopacity="1.0"
43
+ bordercolor="#666666"
44
+ pagecolor="#ffffff"
45
+ id="base"
46
+ inkscape:zoom="2.1461642"
47
+ inkscape:cx="91.558698"
48
+ inkscape:cy="47.9926"
49
+ inkscape:window-x="1092"
50
+ inkscape:window-y="72"
51
+ inkscape:current-layer="svg2"
52
+ width="210mm"
53
+ height="40mm"
54
+ units="mm"
55
+ inkscape:showpageshadow="2"
56
+ inkscape:pagecheckerboard="0"
57
+ inkscape:deskcolor="#d1d1d1"
58
+ inkscape:document-units="pt"
59
+ showgrid="false"
60
+ inkscape:window-maximized="0" />
61
+ <defs
62
+ id="defs4">
63
+ <linearGradient
64
+ id="linearGradient2795">
65
+ <stop
66
+ style="stop-color:#b8b8b8;stop-opacity:0.49803922;"
67
+ offset="0"
68
+ id="stop2797" />
69
+ <stop
70
+ style="stop-color:#7f7f7f;stop-opacity:0;"
71
+ offset="1"
72
+ id="stop2799" />
73
+ </linearGradient>
74
+ <linearGradient
75
+ id="linearGradient2787">
76
+ <stop
77
+ style="stop-color:#7f7f7f;stop-opacity:0.5;"
78
+ offset="0"
79
+ id="stop2789" />
80
+ <stop
81
+ style="stop-color:#7f7f7f;stop-opacity:0;"
82
+ offset="1"
83
+ id="stop2791" />
84
+ </linearGradient>
85
+ <linearGradient
86
+ id="linearGradient3676">
87
+ <stop
88
+ style="stop-color:#b2b2b2;stop-opacity:0.5;"
89
+ offset="0"
90
+ id="stop3678" />
91
+ <stop
92
+ style="stop-color:#b3b3b3;stop-opacity:0;"
93
+ offset="1"
94
+ id="stop3680" />
95
+ </linearGradient>
96
+ <linearGradient
97
+ id="linearGradient3236">
98
+ <stop
99
+ style="stop-color:#f4f4f4;stop-opacity:1"
100
+ offset="0"
101
+ id="stop3244" />
102
+ <stop
103
+ style="stop-color:white;stop-opacity:1"
104
+ offset="1"
105
+ id="stop3240" />
106
+ </linearGradient>
107
+ <linearGradient
108
+ id="linearGradient4671">
109
+ <stop
110
+ style="stop-color:#ffd43b;stop-opacity:1;"
111
+ offset="0"
112
+ id="stop4673" />
113
+ <stop
114
+ style="stop-color:#ffe873;stop-opacity:1"
115
+ offset="1"
116
+ id="stop4675" />
117
+ </linearGradient>
118
+ <linearGradient
119
+ id="linearGradient4689">
120
+ <stop
121
+ style="stop-color:#5a9fd4;stop-opacity:1;"
122
+ offset="0"
123
+ id="stop4691" />
124
+ <stop
125
+ style="stop-color:#306998;stop-opacity:1;"
126
+ offset="1"
127
+ id="stop4693" />
128
+ </linearGradient>
129
+ <linearGradient
130
+ x1="224.23996"
131
+ y1="144.75717"
132
+ x2="-65.308502"
133
+ y2="144.75717"
134
+ id="linearGradient2987"
135
+ xlink:href="#linearGradient4671"
136
+ gradientUnits="userSpaceOnUse"
137
+ gradientTransform="translate(100.2702,99.61116)" />
138
+ <linearGradient
139
+ x1="172.94208"
140
+ y1="77.475983"
141
+ x2="26.670298"
142
+ y2="76.313133"
143
+ id="linearGradient2990"
144
+ xlink:href="#linearGradient4689"
145
+ gradientUnits="userSpaceOnUse"
146
+ gradientTransform="translate(100.2702,99.61116)" />
147
+ <linearGradient
148
+ inkscape:collect="always"
149
+ xlink:href="#linearGradient4689"
150
+ id="linearGradient2587"
151
+ gradientUnits="userSpaceOnUse"
152
+ gradientTransform="translate(100.2702,99.61116)"
153
+ x1="172.94208"
154
+ y1="77.475983"
155
+ x2="26.670298"
156
+ y2="76.313133" />
157
+ <linearGradient
158
+ inkscape:collect="always"
159
+ xlink:href="#linearGradient4671"
160
+ id="linearGradient2589"
161
+ gradientUnits="userSpaceOnUse"
162
+ gradientTransform="translate(100.2702,99.61116)"
163
+ x1="224.23996"
164
+ y1="144.75717"
165
+ x2="-65.308502"
166
+ y2="144.75717" />
167
+ <linearGradient
168
+ inkscape:collect="always"
169
+ xlink:href="#linearGradient4689"
170
+ id="linearGradient2248"
171
+ gradientUnits="userSpaceOnUse"
172
+ gradientTransform="translate(100.2702,99.61116)"
173
+ x1="172.94208"
174
+ y1="77.475983"
175
+ x2="26.670298"
176
+ y2="76.313133" />
177
+ <linearGradient
178
+ inkscape:collect="always"
179
+ xlink:href="#linearGradient4671"
180
+ id="linearGradient2250"
181
+ gradientUnits="userSpaceOnUse"
182
+ gradientTransform="translate(100.2702,99.61116)"
183
+ x1="224.23996"
184
+ y1="144.75717"
185
+ x2="-65.308502"
186
+ y2="144.75717" />
187
+ <linearGradient
188
+ inkscape:collect="always"
189
+ xlink:href="#linearGradient4671"
190
+ id="linearGradient2255"
191
+ gradientUnits="userSpaceOnUse"
192
+ gradientTransform="matrix(0.562541,0,0,0.567972,-11.5974,-7.60954)"
193
+ x1="224.23996"
194
+ y1="144.75717"
195
+ x2="-65.308502"
196
+ y2="144.75717" />
197
+ <linearGradient
198
+ inkscape:collect="always"
199
+ xlink:href="#linearGradient4689"
200
+ id="linearGradient2258"
201
+ gradientUnits="userSpaceOnUse"
202
+ gradientTransform="matrix(0.562541,0,0,0.567972,-11.5974,-7.60954)"
203
+ x1="172.94208"
204
+ y1="76.176224"
205
+ x2="26.670298"
206
+ y2="76.313133" />
207
+ <radialGradient
208
+ inkscape:collect="always"
209
+ xlink:href="#linearGradient2795"
210
+ id="radialGradient2801"
211
+ cx="61.518883"
212
+ cy="132.28575"
213
+ fx="61.518883"
214
+ fy="132.28575"
215
+ r="29.036913"
216
+ gradientTransform="matrix(1,0,0,0.177966,0,108.7434)"
217
+ gradientUnits="userSpaceOnUse" />
218
+ <linearGradient
219
+ inkscape:collect="always"
220
+ xlink:href="#linearGradient4671"
221
+ id="linearGradient1475"
222
+ gradientUnits="userSpaceOnUse"
223
+ gradientTransform="matrix(0.562541,0,0,0.567972,-14.99112,-11.702371)"
224
+ x1="150.96111"
225
+ y1="192.35176"
226
+ x2="112.03144"
227
+ y2="137.27299" />
228
+ <linearGradient
229
+ inkscape:collect="always"
230
+ xlink:href="#linearGradient4689"
231
+ id="linearGradient1478"
232
+ gradientUnits="userSpaceOnUse"
233
+ gradientTransform="matrix(0.562541,0,0,0.567972,-14.99112,-11.702371)"
234
+ x1="26.648937"
235
+ y1="20.603781"
236
+ x2="135.66525"
237
+ y2="114.39767" />
238
+ <radialGradient
239
+ inkscape:collect="always"
240
+ xlink:href="#linearGradient2795"
241
+ id="radialGradient1480"
242
+ gradientUnits="userSpaceOnUse"
243
+ gradientTransform="matrix(1.7490565e-8,-0.23994696,1.054668,3.7915457e-7,-83.7008,142.46201)"
244
+ cx="61.518883"
245
+ cy="132.28575"
246
+ fx="61.518883"
247
+ fy="132.28575"
248
+ r="29.036913" />
249
+ </defs>
250
+ <path
251
+ style="fill:url(#linearGradient1478);fill-opacity:1"
252
+ d="M 54.918785,9.1927421e-4 C 50.335132,0.02221727 45.957846,0.41313697 42.106285,1.0946693 30.760069,3.0991731 28.700036,7.2947714 28.700035,15.032169 v 10.21875 h 26.8125 v 3.40625 h -26.8125 -10.0625 c -7.792459,0 -14.6157588,4.683717 -16.7499998,13.59375 -2.46181998,10.212966 -2.57101508,16.586023 0,27.25 1.9059283,7.937852 6.4575432,13.593748 14.2499998,13.59375 h 9.21875 v -12.25 c 0,-8.849902 7.657144,-16.656248 16.75,-16.65625 h 26.78125 c 7.454951,0 13.406253,-6.138164 13.40625,-13.625 v -25.53125 c 0,-7.2663386 -6.12998,-12.7247771 -13.40625,-13.9374997 C 64.281548,0.32794397 59.502438,-0.02037903 54.918785,9.1927421e-4 Z m -14.5,8.21875012579 c 2.769547,0 5.03125,2.2986456 5.03125,5.1249996 -2e-6,2.816336 -2.261703,5.09375 -5.03125,5.09375 -2.779476,-1e-6 -5.03125,-2.277415 -5.03125,-5.09375 -10e-7,-2.826353 2.251774,-5.1249996 5.03125,-5.1249996 z"
253
+ id="path1948" />
254
+ <path
255
+ style="fill:url(#linearGradient1475);fill-opacity:1"
256
+ d="m 85.637535,28.657169 v 11.90625 c 0,9.230755 -7.825895,16.999999 -16.75,17 h -26.78125 c -7.335833,0 -13.406249,6.278483 -13.40625,13.625 v 25.531247 c 0,7.266344 6.318588,11.540324 13.40625,13.625004 8.487331,2.49561 16.626237,2.94663 26.78125,0 6.750155,-1.95439 13.406253,-5.88761 13.40625,-13.625004 V 86.500919 h -26.78125 v -3.40625 h 26.78125 13.406254 c 7.792461,0 10.696251,-5.435408 13.406241,-13.59375 2.79933,-8.398886 2.68022,-16.475776 0,-27.25 -1.92578,-7.757441 -5.60387,-13.59375 -13.406241,-13.59375 z m -15.0625,64.65625 c 2.779478,3e-6 5.03125,2.277417 5.03125,5.093747 -2e-6,2.826354 -2.251775,5.125004 -5.03125,5.125004 -2.76955,0 -5.03125,-2.29865 -5.03125,-5.125004 2e-6,-2.81633 2.261697,-5.093747 5.03125,-5.093747 z"
257
+ id="path1950" />
258
+ <ellipse
259
+ style="opacity:0.44382;fill:url(#radialGradient1480);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.4174;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
260
+ id="path1894"
261
+ cx="55.816761"
262
+ cy="127.70079"
263
+ rx="35.930977"
264
+ ry="6.9673119" />
265
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-settings-icon lucide-settings"><path d="M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"/><circle cx="12" cy="12" r="3"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-square-icon lucide-square"><rect width="18" height="18" x="3" y="3" rx="2"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-trash2-icon lucide-trash-2"><path d="M10 11v6"/><path d="M14 11v6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"/><path d="M3 6h18"/><path d="M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-down-up-icon lucide-arrow-down-up"><path d="m3 16 4 4 4-4"/><path d="M7 20V4"/><path d="m21 8-4-4-4 4"/><path d="M17 4v16"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-x-icon lucide-x"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
@@ -0,0 +1,29 @@
1
+ import type { Config } from "tailwindcss";
2
+
3
+ const config: Config = {
4
+ content: [
5
+ "./pages/**/*.{js,ts,jsx,tsx,mdx}",
6
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
7
+ "./components/elements/**/*.{js,ts,jsx,tsx,mdx}",
8
+ "./app/**/*.{js,ts,jsx,tsx,mdx}",
9
+ "./lib/**/*.{js,ts,jsx,tsx}",
10
+ ],
11
+ theme: {
12
+ extend: {
13
+ fontFamily: {
14
+ },
15
+ colors: {
16
+ 'mc': {
17
+ background: '#f8fafc',
18
+ cell: '#ffffff',
19
+ text: '#1f2937',
20
+ markdown: '#1f2937',
21
+ line: '#9ca3af',
22
+ },
23
+ },
24
+ },
25
+ },
26
+ plugins: [],
27
+ } satisfies Config;
28
+
29
+ export default config;
frontend/tsconfig.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2017",
4
+ "lib": ["dom", "dom.iterable", "esnext"],
5
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "strict": true,
8
+ "noEmit": true,
9
+ "esModuleInterop": true,
10
+ "module": "esnext",
11
+ "moduleResolution": "bundler",
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "jsx": "preserve",
15
+ "incremental": true,
16
+ "plugins": [
17
+ {
18
+ "name": "next"
19
+ }
20
+ ],
21
+ "paths": {
22
+ "@/*": ["./*"]
23
+ }
24
+ },
25
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26
+ "exclude": ["node_modules"]
27
+ }
@@ -0,0 +1,58 @@
1
+ export interface Cell {
2
+ id: string;
3
+ cell_type: 'code' | 'markdown';
4
+ source: string;
5
+ outputs: Output[];
6
+ metadata: Record<string, unknown>;
7
+ execution_count: number | null;
8
+ execution_time?: string; // e.g., "123.4ms" or "1.2s"
9
+ error?: any;
10
+ isEditing?: boolean;
11
+ }
12
+
13
+ export type Output = StreamOutput | ExecuteResultOutput | ErrorOutput | DisplayDataOutput;
14
+
15
+ export interface StreamOutput {
16
+ output_type: 'stream';
17
+ name: 'stdout' | 'stderr';
18
+ text: string;
19
+ }
20
+
21
+ export interface ExecuteResultOutput {
22
+ output_type: 'execute_result';
23
+ data: { 'text/plain'?: string };
24
+ execution_count: number;
25
+ }
26
+
27
+ export interface DisplayDataOutput {
28
+ output_type: 'display_data';
29
+ data: { 'text/plain'?: string; 'image/png'?: string };
30
+ }
31
+
32
+ export interface ErrorOutput {
33
+ output_type: 'error';
34
+ ename: string;
35
+ evalue: string;
36
+ traceback: string[];
37
+ error_type?: 'pip_error' | 'import_error' | 'file_error' | 'generic_error';
38
+ suggestions?: string[];
39
+ }
40
+
41
+ export interface ExecutionResult {
42
+ cell_index: number;
43
+ result: {
44
+ execution_count?: number;
45
+ outputs: Output[];
46
+ error?: Output;
47
+ status: 'ok' | 'error';
48
+ execution_time?: string;
49
+ };
50
+ }
51
+
52
+ export interface NotebookState {
53
+ cells: Cell[];
54
+ currentCellIndex: number | null;
55
+ executingCells: Set<number>;
56
+ kernelStatus: 'idle' | 'busy' | 'disconnected';
57
+ notebookName: string;
58
+ }
kernel_run.py CHANGED
@@ -222,6 +222,12 @@ class NotebookLauncher:
222
222
 
223
223
  def build_parser() -> argparse.ArgumentParser:
224
224
  parser = argparse.ArgumentParser(description="Launch the MoreCompute notebook")
225
+ parser.add_argument(
226
+ "--version",
227
+ "-v",
228
+ action="version",
229
+ version="%(prog)s 0.1.2",
230
+ )
225
231
  parser.add_argument(
226
232
  "notebook_path",
227
233
  nargs="?",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: more-compute
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: An interactive notebook environment for local and GPU computing
5
5
  Home-page: https://github.com/DannyMang/MORECOMPUTE
6
6
  Author: MoreCompute Team
@@ -0,0 +1,85 @@
1
+ kernel_run.py,sha256=xTnmUULa0NkFWDadOB_AJgZqM9WWrmEFaIJ1mp90RVM,9766
2
+ frontend/.DS_Store,sha256=uQeHnkKyuTF1AVax3NPqtN0uCH6XNXAxL9Nkb6Q9cGw,8196
3
+ frontend/.gitignore,sha256=IH4mX_SQH5rZ-W2M4IUw4E-fxgCBVHKmbQpEYJbWVM0,480
4
+ frontend/README.md,sha256=YLVf9995r3JZD5UkII5GZCvDK9wXXNrUE0loHA4vlY8,1450
5
+ frontend/__init__.py,sha256=L5SAOdfDfKqlgEVCvYQQRDZBTlCxutZKSpJp4018IG4,100
6
+ frontend/eslint.config.mjs,sha256=eA71hsFotYSb8r7NpnjSZqhomanm0Y2Bl_amQ1ieysk,524
7
+ frontend/next-env.d.ts,sha256=ha5a7nXwEZZ88tJcvDQvYtaTFOnZJff0qjRW_Cz_zKY,262
8
+ frontend/next.config.mjs,sha256=n0o6cIIVIoOtI6JlvAK-HUFd2lg1pQPfUwlFS4O6TK0,346
9
+ frontend/next.config.ts,sha256=YUvOJbCJw_GbHhemNGx0uFgDQEAVTGYh59NTAwBHZ8w,133
10
+ frontend/package-lock.json,sha256=M_tcoP7jLAuibnQbNKaNucnU_PDJpteXU5RJHXuKFoY,202440
11
+ frontend/package.json,sha256=VNmvr_yKd9tLmf2zzjld4nxI9OcuiqH3POfwg41ZXso,1093
12
+ frontend/postcss.config.mjs,sha256=FB7yTKJ6mdCJYiEP3yAhLTQ1_c-iG0bNiLRNIvdR364,81
13
+ frontend/tailwind.config.ts,sha256=eP9nVaAuyYo46vGQfCyWbo25_pr2hW830fs1Itcix9Q,620
14
+ frontend/tsconfig.json,sha256=7SvBlRBYmuXAlAteRQTGwEE7ooWuNaPUrZ219dOo61E,598
15
+ frontend/app/favicon.ico,sha256=K4rS0zRVqPc2_DqOv48L3qiEitTA20iigzvQ-c13WTI,25931
16
+ frontend/app/globals.css,sha256=BKXe_SiKaiPCmycFy5jYEkbh9mJqeU7yI-BDDgP6xiM,28926
17
+ frontend/app/layout.tsx,sha256=iHA_C_1DBqYY7Icnq19BwTqp2N-fVEWberjxRqi-PRU,5742
18
+ frontend/app/page.tsx,sha256=p-DgDv8xDnwcRfDJY4rtfSQ2VdYwbnP3G-otWqDR1l0,256
19
+ frontend/components/AddCellButton.tsx,sha256=ob3_tq7SRQbNvbd3UiQRYiCa4Bd7E_YoeDqJOQaHpO0,1068
20
+ frontend/components/Cell.tsx,sha256=MLcmGJTVWiOdi7NhO2VK2w5A7MHNvooDboAQNcg838M,8668
21
+ frontend/components/CellButton.tsx,sha256=BjfazBKzlybA5Syx6tXGTJa1U_jwL8C_IeQKbcHlkyk,1364
22
+ frontend/components/CellOutput.tsx,sha256=D1ZIvOmQvFn_4Y1ahGM5rp0Yr5_Zp_loNJaEUA-GCrA,2073
23
+ frontend/components/ErrorDisplay.tsx,sha256=d6I2WVyDLPsonyDuqsrrN8sc_KHg0VTAW86DfcqfqL0,5978
24
+ frontend/components/ErrorModal.tsx,sha256=kkGHQvgyMYlScKwni04-V_Dq6a0-lg0WodglLARR-uA,3536
25
+ frontend/components/MarkdownRenderer.tsx,sha256=hBOkbQChjOFuGvxltze7GnGW16oE3Rt_afINT7icKX0,2923
26
+ frontend/components/Notebook.tsx,sha256=6EO-obiIA_1S0bF0W7FIubfp0Y98CvnDTOSI8Fx3pC4,16682
27
+ frontend/components/Sidebar.tsx,sha256=EfJ5Pa3FX_zBafu3SNerLbMVlu9y_5naM7a1dI4acOA,1393
28
+ frontend/components/popups/ComputePopup.tsx,sha256=Ivj6wR5l83C87xWcPtrRRpQFkAKpe8v9_7mzhzoWKwA,31199
29
+ frontend/components/popups/FilterPopup.tsx,sha256=4kx9txg8cWeC6XHlh0pu0-BAfZkLTDYEU93fMdzn86M,13818
30
+ frontend/components/popups/FolderPopup.tsx,sha256=V2tDAbztvNIUyPWtFiwjeIoCmFGQyDosQgST_JsAzLo,5215
31
+ frontend/components/popups/MetricsPopup.tsx,sha256=ffkreomH8TyUtJgUpZsJ_R2AFkkb83y5K0rRs0-W_ZY,4935
32
+ frontend/components/popups/PackagesPopup.tsx,sha256=K_9kGlQ-y-njugOLrahbv0KHRh_mXIlzuMg0giRsTb8,3606
33
+ frontend/components/popups/PythonPopup.tsx,sha256=4mo3989glOLBvbzxQlyIczRhFPF9lWKES14uv-dl2Eo,9538
34
+ frontend/components/popups/SettingsPopup.tsx,sha256=djlkfJtUFxdeiTtngWHDx8R7BXIqFgNGVpyVk9evwjg,2644
35
+ frontend/lib/api.ts,sha256=0N4PCSC5pfbq7GvR_6aOdPZ3JGujzi1Rz4V51g8sHP8,10852
36
+ frontend/lib/settings.ts,sha256=TVLMq-d_imiC4kv6f4ufc3vVH4j3CfkJYAYXL7Qalx0,2400
37
+ frontend/lib/websocket-native.ts,sha256=qkwchdTV8uSuL2t7C05NnzOJk_kDHPfcC3AwFL19cC4,5621
38
+ frontend/lib/websocket.ts,sha256=C4Kl5_6ZR5dTYJofNh-R1f3tBYs1yW3BePz6UDqTPpU,3207
39
+ frontend/public/file.svg,sha256=K2eBLDJcGZoCU2zb7qDFk6cvcH0yO3LuPgjbqwZ1O9Q,391
40
+ frontend/public/globe.svg,sha256=thS5vxg5JZV2YayFFJj-HYAp_UOmL7_thvniYkpX588,1035
41
+ frontend/public/next.svg,sha256=VZld-tbstJRaHoVt3KA8XhaqW_E_0htN9qdK55NXvPw,1375
42
+ frontend/public/vercel.svg,sha256=8IEzey_uY1tFW2MnVAaj5_OdagFOJa2Q2rWmfmKhKsQ,128
43
+ frontend/public/window.svg,sha256=ZEdoxKrrR2e84pM0TusMEl-4BKlNgBRAQkByIC2F46E,385
44
+ frontend/public/assets/icons/add.svg,sha256=_R2g6_rQSd9uQ52d_yxLY8kFGvAgJBAOvWUN00aoSkY,511
45
+ frontend/public/assets/icons/check.svg,sha256=MdLhklRIgz5dZqWuUQe0CdBzfA5W63X6RbvOT3C9YTE,261
46
+ frontend/public/assets/icons/copy.svg,sha256=Bd_NXZR-inj4X0WGhkpojErq6F6UXwpdp3DL6rm57r0,355
47
+ frontend/public/assets/icons/folder.svg,sha256=uzpAVxIsuGivdrte56WJOfqCWc1TNN9ldPhrHKEA674,400
48
+ frontend/public/assets/icons/metric.svg,sha256=biafr0qAHRV_8CnMEWrh3Wk3ZMAgbfaL0I1N7Uqfp_U,440
49
+ frontend/public/assets/icons/packages.svg,sha256=70XqerYscy3b-YkLpuNSBalECfmlfRVjgN5Pq4Uvd-I,460
50
+ frontend/public/assets/icons/play.svg,sha256=ca5409xQtDl8rOHp0Dv6t6WWra7QvTupbcGj-OubjL8,326
51
+ frontend/public/assets/icons/python.svg,sha256=uuyGYqFGHCyswya1TScnyy8c4HugLQD1uCbQNRBPZJ8,9605
52
+ frontend/public/assets/icons/setting.svg,sha256=oUwRxiQjyK33aAv4AK1r8FYwIM8RnuwKTTaMU9v_l-U,610
53
+ frontend/public/assets/icons/stop.svg,sha256=98xoeoVwCEFq142v5IYE1GxcD4o3_UGa0pCOu3wzbqw,285
54
+ frontend/public/assets/icons/trash.svg,sha256=ikf6zdvwlLWmmGISVPzrtDlQNMPJ3VskgoCfQCEbCck,398
55
+ frontend/public/assets/icons/up-down.svg,sha256=ocaOoU8RZDKuyrlcPJjESz24GGvas16rytFbC7DXzGg,339
56
+ frontend/public/assets/icons/x.svg,sha256=TPiVYZTK-vRlaG-nLrARcnPIWCJ1xA9sqhr-9Y4Kquk,270
57
+ frontend/public/fonts/Fira.ttf,sha256=dbSM4W7Drd9n_EkfXq8P31KuxbjZ1wtuFiZ8aFebvTw,242896
58
+ frontend/public/fonts/Tiempos.woff2,sha256=h83bJKvAK301wXCMIvK7ZG5j0H2K3tzAfgo0yk4z8OE,13604
59
+ frontend/public/fonts/VeraMono.ttf,sha256=2kKB3H2xej385kpiztkodcWJU0AFXsi6JKORTrl7NJ0,49224
60
+ frontend/types/notebook.ts,sha256=v23RaZe6H3lU5tq6sqnJDPxC2mu0NZFDCJfiN0mgvSs,1359
61
+ more_compute-0.1.3.dist-info/licenses/LICENSE,sha256=0Ot-XIetYt06iay6IhtpJkruD-cLZtjyv7_aIEE-oSc,1073
62
+ morecompute/__init__.py,sha256=pcMVq8Q7qb42AOn7tqgoZJOi3epDDBnEriiv2WVKnXY,87
63
+ morecompute/cli.py,sha256=kVvzvPBqF8xO6UuhU_-TBn99nKwJ405R2mAS6zU0KBc,734
64
+ morecompute/notebook.py,sha256=vSKSjaIZzUbDoPEk2yb4rmM9LA71o44WGqmFen0b70c,3114
65
+ morecompute/process_worker.py,sha256=KsE3r-XpkYGuyO4w3t54VKkD51LfNHAZc3TYattMtrg,7185
66
+ morecompute/server.py,sha256=sAZ9X4CJpd59ZDYjdu7LDYy_Nwd1gQYF9Dn5uRP_uDU,24071
67
+ morecompute/execution/__init__.py,sha256=jPmBmq8BZWbUEY9XFSpqt5FkgX04uNS10WnUlr7Rnms,134
68
+ morecompute/execution/__main__.py,sha256=pAWB_1bn99u8Gb-tVMSMI-NYvbYbDiwbn40L0a0djeA,202
69
+ morecompute/execution/executor.py,sha256=Ngpd_PwQkgvX_ZMEcwGXPKY0OTKtwiI-lrv1ITPF9cA,19399
70
+ morecompute/execution/worker.py,sha256=1XAFMUDbc2A1lO7xUKS9s69Vu6gOMOPdkr8w1pOoQU4,9634
71
+ morecompute/services/pod_manager.py,sha256=eGZyLBiAXVk-rSdQJZOkw5scEHdofwqxNGUJIu78yI0,16684
72
+ morecompute/services/prime_intellect.py,sha256=xHzfKgg8pIKikcMCzgz_5RvXC_LekeIR2gq2hDYRRm4,9129
73
+ morecompute/static/styles.css,sha256=el_NtrUMbAUNSiMVBn1xlG70m3iPv7dyaIbWQMexhsY,19277
74
+ morecompute/utils/__init__.py,sha256=VIxCL3S1pnjEs4cjKGZqZB68_P8FegdeMIqBjJhI5jQ,419
75
+ morecompute/utils/cache_util.py,sha256=lVlXudHvtyvSo_kCSxORJrI85Jod8FrQLbI2f_JOIbA,661
76
+ morecompute/utils/error_utils.py,sha256=e50WLFdD6ngIC30xAgrzdTYtD8tPOIFkKAAh_sPbK0I,11667
77
+ morecompute/utils/notebook_util.py,sha256=3hH94dtXvhizRVTU9a2b38m_51Y4igoXpkjAXUqpVBQ,1353
78
+ morecompute/utils/python_environment_util.py,sha256=l8WWWPwKbypknw8GwL22NXCji5i1FOy1vWG47J6og4g,7441
79
+ morecompute/utils/special_commands.py,sha256=oCmAjKUsIOPIfobaJFDWhN2D5PLkKZtQozR3XAdIMe8,18653
80
+ morecompute/utils/system_environment_util.py,sha256=32mQRubo0i4X61o-825T7m-eUSidcEp07qkInP1sWZA,4774
81
+ more_compute-0.1.3.dist-info/METADATA,sha256=rqwWpT4-X1tki1YIk2nC7tLnXAQztmaZa22I0mulfv4,3988
82
+ more_compute-0.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
83
+ more_compute-0.1.3.dist-info/entry_points.txt,sha256=xp7z9eRPNRM4oxkZZVlyXkhkSjN1AjoYI_B7qpDJ1bI,49
84
+ more_compute-0.1.3.dist-info/top_level.txt,sha256=Tamm6ADzjwaQa1z27O7Izcyhyt9f0gVjMv1_tC810aI,32
85
+ more_compute-0.1.3.dist-info/RECORD,,
@@ -1,2 +1,3 @@
1
+ frontend
1
2
  kernel_run
2
3
  morecompute