more-compute 0.1.1__tar.gz → 0.1.3__tar.gz

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 (94) hide show
  1. more_compute-0.1.3/MANIFEST.in +5 -0
  2. {more_compute-0.1.1/more_compute.egg-info → more_compute-0.1.3}/PKG-INFO +3 -3
  3. {more_compute-0.1.1 → more_compute-0.1.3}/README.md +2 -2
  4. more_compute-0.1.3/frontend/.DS_Store +0 -0
  5. more_compute-0.1.3/frontend/.gitignore +41 -0
  6. more_compute-0.1.3/frontend/README.md +36 -0
  7. more_compute-0.1.3/frontend/__init__.py +1 -0
  8. more_compute-0.1.3/frontend/app/favicon.ico +0 -0
  9. more_compute-0.1.3/frontend/app/globals.css +1537 -0
  10. more_compute-0.1.3/frontend/app/layout.tsx +173 -0
  11. more_compute-0.1.3/frontend/app/page.tsx +11 -0
  12. more_compute-0.1.3/frontend/components/AddCellButton.tsx +42 -0
  13. more_compute-0.1.3/frontend/components/Cell.tsx +244 -0
  14. more_compute-0.1.3/frontend/components/CellButton.tsx +58 -0
  15. more_compute-0.1.3/frontend/components/CellOutput.tsx +70 -0
  16. more_compute-0.1.3/frontend/components/ErrorDisplay.tsx +208 -0
  17. more_compute-0.1.3/frontend/components/ErrorModal.tsx +154 -0
  18. more_compute-0.1.3/frontend/components/MarkdownRenderer.tsx +84 -0
  19. more_compute-0.1.3/frontend/components/Notebook.tsx +520 -0
  20. more_compute-0.1.3/frontend/components/Sidebar.tsx +46 -0
  21. more_compute-0.1.3/frontend/components/popups/ComputePopup.tsx +879 -0
  22. more_compute-0.1.3/frontend/components/popups/FilterPopup.tsx +427 -0
  23. more_compute-0.1.3/frontend/components/popups/FolderPopup.tsx +171 -0
  24. more_compute-0.1.3/frontend/components/popups/MetricsPopup.tsx +168 -0
  25. more_compute-0.1.3/frontend/components/popups/PackagesPopup.tsx +112 -0
  26. more_compute-0.1.3/frontend/components/popups/PythonPopup.tsx +292 -0
  27. more_compute-0.1.3/frontend/components/popups/SettingsPopup.tsx +68 -0
  28. more_compute-0.1.3/frontend/eslint.config.mjs +25 -0
  29. more_compute-0.1.3/frontend/lib/api.ts +469 -0
  30. more_compute-0.1.3/frontend/lib/settings.ts +87 -0
  31. more_compute-0.1.3/frontend/lib/websocket-native.ts +202 -0
  32. more_compute-0.1.3/frontend/lib/websocket.ts +134 -0
  33. more_compute-0.1.3/frontend/next-env.d.ts +6 -0
  34. more_compute-0.1.3/frontend/next.config.mjs +17 -0
  35. more_compute-0.1.3/frontend/next.config.ts +7 -0
  36. more_compute-0.1.3/frontend/package-lock.json +5676 -0
  37. more_compute-0.1.3/frontend/package.json +41 -0
  38. more_compute-0.1.3/frontend/postcss.config.mjs +5 -0
  39. more_compute-0.1.3/frontend/public/assets/icons/add.svg +1 -0
  40. more_compute-0.1.3/frontend/public/assets/icons/check.svg +1 -0
  41. more_compute-0.1.3/frontend/public/assets/icons/copy.svg +1 -0
  42. more_compute-0.1.3/frontend/public/assets/icons/folder.svg +1 -0
  43. more_compute-0.1.3/frontend/public/assets/icons/metric.svg +1 -0
  44. more_compute-0.1.3/frontend/public/assets/icons/packages.svg +1 -0
  45. more_compute-0.1.3/frontend/public/assets/icons/play.svg +1 -0
  46. more_compute-0.1.3/frontend/public/assets/icons/python.svg +265 -0
  47. more_compute-0.1.3/frontend/public/assets/icons/setting.svg +1 -0
  48. more_compute-0.1.3/frontend/public/assets/icons/stop.svg +1 -0
  49. more_compute-0.1.3/frontend/public/assets/icons/trash.svg +1 -0
  50. more_compute-0.1.3/frontend/public/assets/icons/up-down.svg +1 -0
  51. more_compute-0.1.3/frontend/public/assets/icons/x.svg +1 -0
  52. more_compute-0.1.3/frontend/public/file.svg +1 -0
  53. more_compute-0.1.3/frontend/public/fonts/Fira.ttf +0 -0
  54. more_compute-0.1.3/frontend/public/fonts/Tiempos.woff2 +0 -0
  55. more_compute-0.1.3/frontend/public/fonts/VeraMono.ttf +0 -0
  56. more_compute-0.1.3/frontend/public/globe.svg +1 -0
  57. more_compute-0.1.3/frontend/public/next.svg +1 -0
  58. more_compute-0.1.3/frontend/public/vercel.svg +1 -0
  59. more_compute-0.1.3/frontend/public/window.svg +1 -0
  60. more_compute-0.1.3/frontend/tailwind.config.ts +29 -0
  61. more_compute-0.1.3/frontend/tsconfig.json +27 -0
  62. more_compute-0.1.3/frontend/types/notebook.ts +58 -0
  63. {more_compute-0.1.1 → more_compute-0.1.3}/kernel_run.py +6 -0
  64. {more_compute-0.1.1 → more_compute-0.1.3/more_compute.egg-info}/PKG-INFO +3 -3
  65. more_compute-0.1.3/more_compute.egg-info/SOURCES.txt +90 -0
  66. {more_compute-0.1.1 → more_compute-0.1.3}/more_compute.egg-info/top_level.txt +1 -0
  67. {more_compute-0.1.1 → more_compute-0.1.3}/pyproject.toml +5 -2
  68. {more_compute-0.1.1 → more_compute-0.1.3}/setup.py +5 -2
  69. more_compute-0.1.1/MANIFEST.in +0 -2
  70. more_compute-0.1.1/more_compute.egg-info/SOURCES.txt +0 -31
  71. {more_compute-0.1.1 → more_compute-0.1.3}/LICENSE +0 -0
  72. {more_compute-0.1.1 → more_compute-0.1.3}/more_compute.egg-info/dependency_links.txt +0 -0
  73. {more_compute-0.1.1 → more_compute-0.1.3}/more_compute.egg-info/entry_points.txt +0 -0
  74. {more_compute-0.1.1 → more_compute-0.1.3}/more_compute.egg-info/requires.txt +0 -0
  75. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/__init__.py +0 -0
  76. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/cli.py +0 -0
  77. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/execution/__init__.py +0 -0
  78. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/execution/__main__.py +0 -0
  79. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/execution/executor.py +0 -0
  80. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/execution/worker.py +0 -0
  81. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/notebook.py +0 -0
  82. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/process_worker.py +0 -0
  83. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/server.py +0 -0
  84. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/services/pod_manager.py +0 -0
  85. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/services/prime_intellect.py +0 -0
  86. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/static/styles.css +0 -0
  87. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/__init__.py +0 -0
  88. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/cache_util.py +0 -0
  89. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/error_utils.py +0 -0
  90. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/notebook_util.py +0 -0
  91. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/python_environment_util.py +0 -0
  92. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/special_commands.py +0 -0
  93. {more_compute-0.1.1 → more_compute-0.1.3}/morecompute/utils/system_environment_util.py +0 -0
  94. {more_compute-0.1.1 → more_compute-0.1.3}/setup.cfg +0 -0
@@ -0,0 +1,5 @@
1
+ include README.md
2
+ recursive-include morecompute/static *
3
+ recursive-include frontend *
4
+ prune frontend/node_modules
5
+ prune frontend/.next
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: more-compute
3
- Version: 0.1.1
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
@@ -56,7 +56,7 @@ pip install -e .
56
56
 
57
57
  ## Installation
58
58
 
59
- ### Recommended: Using uv (fastest, auto-handles PATH)
59
+ ### Recommended: Using uv
60
60
  ```bash
61
61
  # Install uv
62
62
  curl -LsSf https://astral.sh/uv/install.sh | sh
@@ -68,7 +68,7 @@ uv tool install more-compute
68
68
  ### Alternative: Using pip
69
69
  ```bash
70
70
  pip install more-compute
71
- # If "command not found", run: python3 -m kernel_run new
71
+ # you have to add to path manually
72
72
  ```
73
73
 
74
74
  ## Usage
@@ -16,7 +16,7 @@ pip install -e .
16
16
 
17
17
  ## Installation
18
18
 
19
- ### Recommended: Using uv (fastest, auto-handles PATH)
19
+ ### Recommended: Using uv
20
20
  ```bash
21
21
  # Install uv
22
22
  curl -LsSf https://astral.sh/uv/install.sh | sh
@@ -28,7 +28,7 @@ uv tool install more-compute
28
28
  ### Alternative: Using pip
29
29
  ```bash
30
30
  pip install more-compute
31
- # If "command not found", run: python3 -m kernel_run new
31
+ # you have to add to path manually
32
32
  ```
33
33
 
34
34
  ## Usage
Binary file
@@ -0,0 +1,41 @@
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+ /.pnp
6
+ .pnp.*
7
+ .yarn/*
8
+ !.yarn/patches
9
+ !.yarn/plugins
10
+ !.yarn/releases
11
+ !.yarn/versions
12
+
13
+ # testing
14
+ /coverage
15
+
16
+ # next.js
17
+ /.next/
18
+ /out/
19
+
20
+ # production
21
+ /build
22
+
23
+ # misc
24
+ .DS_Store
25
+ *.pem
26
+
27
+ # debug
28
+ npm-debug.log*
29
+ yarn-debug.log*
30
+ yarn-error.log*
31
+ .pnpm-debug.log*
32
+
33
+ # env files (can opt-in for committing if needed)
34
+ .env*
35
+
36
+ # vercel
37
+ .vercel
38
+
39
+ # typescript
40
+ *.tsbuildinfo
41
+ next-env.d.ts
@@ -0,0 +1,36 @@
1
+ This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
2
+
3
+ ## Getting Started
4
+
5
+ First, run the development server:
6
+
7
+ ```bash
8
+ npm run dev
9
+ # or
10
+ yarn dev
11
+ # or
12
+ pnpm dev
13
+ # or
14
+ bun dev
15
+ ```
16
+
17
+ Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18
+
19
+ You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20
+
21
+ This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22
+
23
+ ## Learn More
24
+
25
+ To learn more about Next.js, take a look at the following resources:
26
+
27
+ - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28
+ - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29
+
30
+ You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31
+
32
+ ## Deploy on Vercel
33
+
34
+ The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35
+
36
+ Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
@@ -0,0 +1 @@
1
+ # This file makes the frontend directory a Python package so it can be included in the distribution