cloud-submit 0.1.1__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.
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/PKG-INFO +3 -1
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/basic/userconfig/template.yaml +1 -1
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/userconfig/template.yaml +1 -1
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/pyproject.toml +5 -1
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/.gitignore +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/LICENSE +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/README.md +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/aws/src/csub/build_config.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/aws/src/fit.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/aws/src/generate.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/aws/src/parameters.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/aws/userconfig/template.yaml +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/basic/src/csub/build_config.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/basic/src/fit.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/basic/src/generate.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/basic/src/parameters.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/src/csub/build_config.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/src/fit.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/src/generate.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/src/parameters.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/__init__.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/cli.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/config.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/controller.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/environment_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/__init__.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/local_environment_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/local_execution_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/remote_environment_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/remote_execution_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/s3_tools.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/local/environment_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/local/execution_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/execution/base_execution_handler.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/execution/config.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/execution/execute.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/execution/utils.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/images.py +0 -0
- {cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/utils.py +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloud-submit
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A tool for building processing pipelines in Python and executing them locally or in the cloud.
|
|
5
|
+
Project-URL: Homepage, https://github.com/mwiebusch78/cloud-submit
|
|
6
|
+
Project-URL: Bug Tracker, https://github.com/mwiebusch78/cloud-submit/issues
|
|
5
7
|
Author: Martin Wiebusch
|
|
6
8
|
License-File: LICENSE
|
|
7
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
# (In this example we only use a single local environment, so there are no
|
|
5
5
|
# other users here. But the username becomes very important when you're running
|
|
6
6
|
# jobs in the cloud on an account that you share with other people.)
|
|
7
|
-
|
|
7
|
+
username: # TODO: choose a user name.
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/userconfig/template.yaml
RENAMED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
# (In this example we only use a single local environment, so there are no
|
|
5
5
|
# other users here. But the username becomes very important when you're running
|
|
6
6
|
# jobs in the cloud on an account that you share with other people.)
|
|
7
|
-
|
|
7
|
+
username: # TODO: choose a user name.
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "cloud-submit"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Martin Wiebusch" },
|
|
10
10
|
]
|
|
@@ -21,6 +21,10 @@ dependencies = [
|
|
|
21
21
|
"pyyaml",
|
|
22
22
|
]
|
|
23
23
|
|
|
24
|
+
[project.urls]
|
|
25
|
+
"Homepage" = "https://github.com/mwiebusch78/cloud-submit"
|
|
26
|
+
"Bug Tracker" = "https://github.com/mwiebusch78/cloud-submit/issues"
|
|
27
|
+
|
|
24
28
|
[project.scripts]
|
|
25
29
|
csub = "cloud_submit.cli:main"
|
|
26
30
|
|
|
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
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/docs/examples/multi-worker/src/csub/build_config.py
RENAMED
|
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
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/local_environment_handler.py
RENAMED
|
File without changes
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/local_execution_handler.py
RENAMED
|
File without changes
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/remote_environment_handler.py
RENAMED
|
File without changes
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/aws/remote_execution_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/envs/local/environment_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
{cloud_submit-0.1.1 → cloud_submit-0.1.2}/src/cloud_submit/execution/base_execution_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|