tensorlake 0.4.39

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.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runPythonModule } = require("../lib/runtime.cjs");
4
+
5
+ runPythonModule(
6
+ "tensorlake.function_executor.main",
7
+ "Python 3 with the 'tensorlake' package installed is required for function-executor.",
8
+ );
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runPythonModule } = require("../lib/runtime.cjs");
4
+
5
+ runPythonModule(
6
+ "tensorlake.cli.create_sandbox_image",
7
+ "Python 3 with the 'tensorlake' package installed is required for tensorlake-create-sandbox-image.",
8
+ );
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runPythonModule } = require("../lib/runtime.cjs");
4
+
5
+ runPythonModule(
6
+ "tensorlake.cli.deploy",
7
+ "Python 3 with the 'tensorlake' package installed is required for tensorlake-deploy.",
8
+ );
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runBinary } = require("../lib/runtime.cjs");
4
+
5
+ runBinary("tensorlake");
package/bin/tl.cjs ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runBinary } = require("../lib/runtime.cjs");
4
+
5
+ runBinary("tl");
Binary file
Binary file
Binary file
Binary file
Binary file