more-compute 0.1.0__tar.gz → 0.1.1__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 (33) hide show
  1. {more_compute-0.1.0/more_compute.egg-info → more_compute-0.1.1}/PKG-INFO +12 -2
  2. {more_compute-0.1.0 → more_compute-0.1.1}/README.md +11 -1
  3. {more_compute-0.1.0 → more_compute-0.1.1/more_compute.egg-info}/PKG-INFO +12 -2
  4. {more_compute-0.1.0 → more_compute-0.1.1}/pyproject.toml +1 -1
  5. {more_compute-0.1.0 → more_compute-0.1.1}/setup.py +1 -1
  6. {more_compute-0.1.0 → more_compute-0.1.1}/LICENSE +0 -0
  7. {more_compute-0.1.0 → more_compute-0.1.1}/MANIFEST.in +0 -0
  8. {more_compute-0.1.0 → more_compute-0.1.1}/kernel_run.py +0 -0
  9. {more_compute-0.1.0 → more_compute-0.1.1}/more_compute.egg-info/SOURCES.txt +0 -0
  10. {more_compute-0.1.0 → more_compute-0.1.1}/more_compute.egg-info/dependency_links.txt +0 -0
  11. {more_compute-0.1.0 → more_compute-0.1.1}/more_compute.egg-info/entry_points.txt +0 -0
  12. {more_compute-0.1.0 → more_compute-0.1.1}/more_compute.egg-info/requires.txt +0 -0
  13. {more_compute-0.1.0 → more_compute-0.1.1}/more_compute.egg-info/top_level.txt +0 -0
  14. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/__init__.py +0 -0
  15. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/cli.py +0 -0
  16. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/execution/__init__.py +0 -0
  17. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/execution/__main__.py +0 -0
  18. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/execution/executor.py +0 -0
  19. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/execution/worker.py +0 -0
  20. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/notebook.py +0 -0
  21. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/process_worker.py +0 -0
  22. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/server.py +0 -0
  23. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/services/pod_manager.py +0 -0
  24. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/services/prime_intellect.py +0 -0
  25. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/static/styles.css +0 -0
  26. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/__init__.py +0 -0
  27. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/cache_util.py +0 -0
  28. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/error_utils.py +0 -0
  29. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/notebook_util.py +0 -0
  30. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/python_environment_util.py +0 -0
  31. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/special_commands.py +0 -0
  32. {more_compute-0.1.0 → more_compute-0.1.1}/morecompute/utils/system_environment_util.py +0 -0
  33. {more_compute-0.1.0 → more_compute-0.1.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: more-compute
3
- Version: 0.1.0
3
+ Version: 0.1.1
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 (fastest, auto-handles PATH)
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
+ # If "command not found", run: python3 -m kernel_run new
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 (fastest, auto-handles PATH)
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
+ # If "command not found", run: python3 -m kernel_run new
22
32
  ```
23
33
 
24
34
  ## Usage
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: more-compute
3
- Version: 0.1.0
3
+ Version: 0.1.1
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 (fastest, auto-handles PATH)
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
+ # If "command not found", run: python3 -m kernel_run new
62
72
  ```
63
73
 
64
74
  ## Usage
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "more-compute"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "An interactive notebook environment for local and GPU computing"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="more-compute",
8
- version="0.1.0",
8
+ version="0.1.1",
9
9
  author="MoreCompute Team",
10
10
  author_email="hello@morecompute.dev",
11
11
  description="An interactive notebook environment for local and GPU computing",
File without changes
File without changes
File without changes
File without changes