more-compute 0.1.2__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.
- {more_compute-0.1.2/more_compute.egg-info → more_compute-0.1.3}/PKG-INFO +1 -1
- more_compute-0.1.3/frontend/__init__.py +1 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/kernel_run.py +6 -0
- {more_compute-0.1.2 → more_compute-0.1.3/more_compute.egg-info}/PKG-INFO +1 -1
- {more_compute-0.1.2 → more_compute-0.1.3}/more_compute.egg-info/SOURCES.txt +1 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/more_compute.egg-info/top_level.txt +1 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/pyproject.toml +5 -2
- {more_compute-0.1.2 → more_compute-0.1.3}/setup.py +5 -2
- {more_compute-0.1.2 → more_compute-0.1.3}/LICENSE +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/MANIFEST.in +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/README.md +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/.DS_Store +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/.gitignore +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/README.md +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/app/favicon.ico +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/app/globals.css +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/app/layout.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/app/page.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/AddCellButton.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/Cell.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/CellButton.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/CellOutput.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/ErrorDisplay.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/ErrorModal.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/MarkdownRenderer.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/Notebook.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/Sidebar.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/ComputePopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/FilterPopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/FolderPopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/MetricsPopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/PackagesPopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/PythonPopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/components/popups/SettingsPopup.tsx +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/eslint.config.mjs +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/lib/api.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/lib/settings.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/lib/websocket-native.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/lib/websocket.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/next-env.d.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/next.config.mjs +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/next.config.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/package-lock.json +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/package.json +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/postcss.config.mjs +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/add.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/check.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/copy.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/folder.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/metric.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/packages.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/play.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/python.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/setting.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/stop.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/trash.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/up-down.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/assets/icons/x.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/file.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/fonts/Fira.ttf +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/fonts/Tiempos.woff2 +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/fonts/VeraMono.ttf +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/globe.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/next.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/vercel.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/public/window.svg +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/tailwind.config.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/tsconfig.json +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/frontend/types/notebook.ts +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/more_compute.egg-info/dependency_links.txt +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/more_compute.egg-info/entry_points.txt +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/more_compute.egg-info/requires.txt +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/__init__.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/cli.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/execution/__init__.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/execution/__main__.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/execution/executor.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/execution/worker.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/notebook.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/process_worker.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/server.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/services/pod_manager.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/services/prime_intellect.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/static/styles.css +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/__init__.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/cache_util.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/error_utils.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/notebook_util.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/python_environment_util.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/special_commands.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/morecompute/utils/system_environment_util.py +0 -0
- {more_compute-0.1.2 → more_compute-0.1.3}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# This file makes the frontend directory a Python package so it can be included in the distribution
|
|
@@ -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="?",
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "more-compute"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "An interactive notebook environment for local and GPU computing"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -51,4 +51,7 @@ py-modules = ["kernel_run"]
|
|
|
51
51
|
|
|
52
52
|
[tool.setuptools.packages.find]
|
|
53
53
|
where = ["."]
|
|
54
|
-
include = ["morecompute*"]
|
|
54
|
+
include = ["morecompute*", "frontend"]
|
|
55
|
+
|
|
56
|
+
[tool.setuptools.package-data]
|
|
57
|
+
"frontend" = ["**/*"]
|
|
@@ -5,14 +5,17 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="more-compute",
|
|
8
|
-
version="0.1.
|
|
8
|
+
version="0.1.3",
|
|
9
9
|
author="MoreCompute Team",
|
|
10
10
|
author_email="hello@morecompute.dev",
|
|
11
11
|
description="An interactive notebook environment for local and GPU computing",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
14
14
|
url="https://github.com/DannyMang/MORECOMPUTE",
|
|
15
|
-
packages=find_packages(),
|
|
15
|
+
packages=find_packages(include=["morecompute*", "frontend*"]),
|
|
16
|
+
package_data={
|
|
17
|
+
"frontend": ["**/*"],
|
|
18
|
+
},
|
|
16
19
|
classifiers=[
|
|
17
20
|
"Development Status :: 3 - Alpha",
|
|
18
21
|
"Intended Audience :: Developers",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|