more-compute 0.1.0__tar.gz → 0.1.2__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 (93) hide show
  1. more_compute-0.1.2/MANIFEST.in +5 -0
  2. {more_compute-0.1.0/more_compute.egg-info → more_compute-0.1.2}/PKG-INFO +12 -2
  3. {more_compute-0.1.0 → more_compute-0.1.2}/README.md +11 -1
  4. more_compute-0.1.2/frontend/.DS_Store +0 -0
  5. more_compute-0.1.2/frontend/.gitignore +41 -0
  6. more_compute-0.1.2/frontend/README.md +36 -0
  7. more_compute-0.1.2/frontend/app/favicon.ico +0 -0
  8. more_compute-0.1.2/frontend/app/globals.css +1537 -0
  9. more_compute-0.1.2/frontend/app/layout.tsx +173 -0
  10. more_compute-0.1.2/frontend/app/page.tsx +11 -0
  11. more_compute-0.1.2/frontend/components/AddCellButton.tsx +42 -0
  12. more_compute-0.1.2/frontend/components/Cell.tsx +244 -0
  13. more_compute-0.1.2/frontend/components/CellButton.tsx +58 -0
  14. more_compute-0.1.2/frontend/components/CellOutput.tsx +70 -0
  15. more_compute-0.1.2/frontend/components/ErrorDisplay.tsx +208 -0
  16. more_compute-0.1.2/frontend/components/ErrorModal.tsx +154 -0
  17. more_compute-0.1.2/frontend/components/MarkdownRenderer.tsx +84 -0
  18. more_compute-0.1.2/frontend/components/Notebook.tsx +520 -0
  19. more_compute-0.1.2/frontend/components/Sidebar.tsx +46 -0
  20. more_compute-0.1.2/frontend/components/popups/ComputePopup.tsx +879 -0
  21. more_compute-0.1.2/frontend/components/popups/FilterPopup.tsx +427 -0
  22. more_compute-0.1.2/frontend/components/popups/FolderPopup.tsx +171 -0
  23. more_compute-0.1.2/frontend/components/popups/MetricsPopup.tsx +168 -0
  24. more_compute-0.1.2/frontend/components/popups/PackagesPopup.tsx +112 -0
  25. more_compute-0.1.2/frontend/components/popups/PythonPopup.tsx +292 -0
  26. more_compute-0.1.2/frontend/components/popups/SettingsPopup.tsx +68 -0
  27. more_compute-0.1.2/frontend/eslint.config.mjs +25 -0
  28. more_compute-0.1.2/frontend/lib/api.ts +469 -0
  29. more_compute-0.1.2/frontend/lib/settings.ts +87 -0
  30. more_compute-0.1.2/frontend/lib/websocket-native.ts +202 -0
  31. more_compute-0.1.2/frontend/lib/websocket.ts +134 -0
  32. more_compute-0.1.2/frontend/next-env.d.ts +6 -0
  33. more_compute-0.1.2/frontend/next.config.mjs +17 -0
  34. more_compute-0.1.2/frontend/next.config.ts +7 -0
  35. more_compute-0.1.2/frontend/package-lock.json +5676 -0
  36. more_compute-0.1.2/frontend/package.json +41 -0
  37. more_compute-0.1.2/frontend/postcss.config.mjs +5 -0
  38. more_compute-0.1.2/frontend/public/assets/icons/add.svg +1 -0
  39. more_compute-0.1.2/frontend/public/assets/icons/check.svg +1 -0
  40. more_compute-0.1.2/frontend/public/assets/icons/copy.svg +1 -0
  41. more_compute-0.1.2/frontend/public/assets/icons/folder.svg +1 -0
  42. more_compute-0.1.2/frontend/public/assets/icons/metric.svg +1 -0
  43. more_compute-0.1.2/frontend/public/assets/icons/packages.svg +1 -0
  44. more_compute-0.1.2/frontend/public/assets/icons/play.svg +1 -0
  45. more_compute-0.1.2/frontend/public/assets/icons/python.svg +265 -0
  46. more_compute-0.1.2/frontend/public/assets/icons/setting.svg +1 -0
  47. more_compute-0.1.2/frontend/public/assets/icons/stop.svg +1 -0
  48. more_compute-0.1.2/frontend/public/assets/icons/trash.svg +1 -0
  49. more_compute-0.1.2/frontend/public/assets/icons/up-down.svg +1 -0
  50. more_compute-0.1.2/frontend/public/assets/icons/x.svg +1 -0
  51. more_compute-0.1.2/frontend/public/file.svg +1 -0
  52. more_compute-0.1.2/frontend/public/fonts/Fira.ttf +0 -0
  53. more_compute-0.1.2/frontend/public/fonts/Tiempos.woff2 +0 -0
  54. more_compute-0.1.2/frontend/public/fonts/VeraMono.ttf +0 -0
  55. more_compute-0.1.2/frontend/public/globe.svg +1 -0
  56. more_compute-0.1.2/frontend/public/next.svg +1 -0
  57. more_compute-0.1.2/frontend/public/vercel.svg +1 -0
  58. more_compute-0.1.2/frontend/public/window.svg +1 -0
  59. more_compute-0.1.2/frontend/tailwind.config.ts +29 -0
  60. more_compute-0.1.2/frontend/tsconfig.json +27 -0
  61. more_compute-0.1.2/frontend/types/notebook.ts +58 -0
  62. {more_compute-0.1.0 → more_compute-0.1.2/more_compute.egg-info}/PKG-INFO +12 -2
  63. more_compute-0.1.2/more_compute.egg-info/SOURCES.txt +89 -0
  64. {more_compute-0.1.0 → more_compute-0.1.2}/pyproject.toml +1 -1
  65. {more_compute-0.1.0 → more_compute-0.1.2}/setup.py +1 -1
  66. more_compute-0.1.0/MANIFEST.in +0 -2
  67. more_compute-0.1.0/more_compute.egg-info/SOURCES.txt +0 -31
  68. {more_compute-0.1.0 → more_compute-0.1.2}/LICENSE +0 -0
  69. {more_compute-0.1.0 → more_compute-0.1.2}/kernel_run.py +0 -0
  70. {more_compute-0.1.0 → more_compute-0.1.2}/more_compute.egg-info/dependency_links.txt +0 -0
  71. {more_compute-0.1.0 → more_compute-0.1.2}/more_compute.egg-info/entry_points.txt +0 -0
  72. {more_compute-0.1.0 → more_compute-0.1.2}/more_compute.egg-info/requires.txt +0 -0
  73. {more_compute-0.1.0 → more_compute-0.1.2}/more_compute.egg-info/top_level.txt +0 -0
  74. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/__init__.py +0 -0
  75. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/cli.py +0 -0
  76. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/execution/__init__.py +0 -0
  77. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/execution/__main__.py +0 -0
  78. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/execution/executor.py +0 -0
  79. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/execution/worker.py +0 -0
  80. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/notebook.py +0 -0
  81. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/process_worker.py +0 -0
  82. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/server.py +0 -0
  83. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/services/pod_manager.py +0 -0
  84. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/services/prime_intellect.py +0 -0
  85. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/static/styles.css +0 -0
  86. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/__init__.py +0 -0
  87. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/cache_util.py +0 -0
  88. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/error_utils.py +0 -0
  89. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/notebook_util.py +0 -0
  90. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/python_environment_util.py +0 -0
  91. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/special_commands.py +0 -0
  92. {more_compute-0.1.0 → more_compute-0.1.2}/morecompute/utils/system_environment_util.py +0 -0
  93. {more_compute-0.1.0 → more_compute-0.1.2}/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.0
3
+ Version: 0.1.2
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,9 +56,19 @@ pip install -e .
56
56
 
57
57
  ## Installation
58
58
 
59
+ ### Recommended: Using uv
60
+ ```bash
61
+ # Install uv
62
+ curl -LsSf https://astral.sh/uv/install.sh | sh
63
+
64
+ # Install more-compute
65
+ uv tool install more-compute
66
+ ```
67
+
68
+ ### Alternative: Using pip
59
69
  ```bash
60
- (NOT IMPLEMENTED YET, TO-DO SET UP ON PyPi)
61
70
  pip install more-compute
71
+ # you have to add to path manually
62
72
  ```
63
73
 
64
74
  ## Usage
@@ -16,9 +16,19 @@ pip install -e .
16
16
 
17
17
  ## Installation
18
18
 
19
+ ### Recommended: Using uv
20
+ ```bash
21
+ # Install uv
22
+ curl -LsSf https://astral.sh/uv/install.sh | sh
23
+
24
+ # Install more-compute
25
+ uv tool install more-compute
26
+ ```
27
+
28
+ ### Alternative: Using pip
19
29
  ```bash
20
- (NOT IMPLEMENTED YET, TO-DO SET UP ON PyPi)
21
30
  pip install more-compute
31
+ # you have to add to path manually
22
32
  ```
23
33
 
24
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.