cloud-submit 0.1__py3-none-any.whl

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,30 @@
1
+ import importlib.metadata
2
+ __version__ = importlib.metadata.version('cloud-submit')
3
+
4
+ from .controller import Controller
5
+ from .config import Config
6
+ from .execution.config import (
7
+ ConfigError,
8
+ Artifact,
9
+ ArtifactLocation,
10
+ Spec,
11
+ Step,
12
+ Pipeline,
13
+ local,
14
+ remote,
15
+ )
16
+ from .execution.utils import (
17
+ CloudSubmitError,
18
+ clear_path,
19
+ ensure_path,
20
+ read_json,
21
+ write_json,
22
+ run_command,
23
+ )
24
+ from .images import Image, BaseImage, ExecutionImage
25
+ from .environment_handler import EnvironmentHandler
26
+ from .envs.local.environment_handler import LocalEnv
27
+ from .utils import (
28
+ build_docker_mount_option,
29
+ parse_image_ref,
30
+ )