cloud-submit 0.1__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.
- cloud_submit-0.1.1/PKG-INFO +43 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/pyproject.toml +2 -1
- cloud_submit-0.1/PKG-INFO +0 -12
- {cloud_submit-0.1 → cloud_submit-0.1.1}/.gitignore +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/LICENSE +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/README.md +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/csub/build_config.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/fit.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/generate.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/parameters.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/userconfig/template.yaml +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/csub/build_config.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/fit.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/generate.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/parameters.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/userconfig/template.yaml +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/csub/build_config.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/fit.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/generate.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/parameters.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/userconfig/template.yaml +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/__init__.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/cli.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/config.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/controller.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/environment_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/__init__.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/local_environment_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/local_execution_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/remote_environment_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/remote_execution_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/s3_tools.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/local/environment_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/local/execution_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/base_execution_handler.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/config.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/execute.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/utils.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/images.py +0 -0
- {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/utils.py +0 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cloud-submit
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A tool for building processing pipelines in Python and executing them locally or in the cloud.
|
|
5
|
+
Author: Martin Wiebusch
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Requires-Dist: click
|
|
12
|
+
Requires-Dist: pyyaml
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# cloud-submit
|
|
16
|
+
|
|
17
|
+
A tool for packaging Python code with Docker and executing it in local and
|
|
18
|
+
cloud environments.
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
$ pip install cloud-submit
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
This package provides a Python module called `cloud_submit` as well as a
|
|
29
|
+
command-line tool called `csub`.
|
|
30
|
+
|
|
31
|
+
Have a look at the
|
|
32
|
+
[examples](https://github.com/mwiebusch78/cloud-submit/tree/main/docs/examples)
|
|
33
|
+
to see how to set up a project directory. To run any of the examples you will
|
|
34
|
+
have to copy `userconfig/template.yaml` to `userconfig/default.yaml` and fill
|
|
35
|
+
in the blanks.
|
|
36
|
+
|
|
37
|
+
To run the AWS example you need to have the AWS CLI (v2) installed locally
|
|
38
|
+
and you need an AWS account. The comments in `userconfig/template.yaml` tell
|
|
39
|
+
you how you need to configure your AWS account so that the example can run.
|
|
40
|
+
|
|
41
|
+
Run `csub --help` to explore the functionality of `csub` and its subcommands.
|
|
42
|
+
|
|
43
|
+
Proper documentation will be added as soon as I have the time. (Promise!)
|
|
@@ -4,11 +4,12 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "cloud-submit"
|
|
7
|
-
version = "0.1"
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Martin Wiebusch" },
|
|
10
10
|
]
|
|
11
11
|
description = "A tool for building processing pipelines in Python and executing them locally or in the cloud."
|
|
12
|
+
readme = "README.md"
|
|
12
13
|
requires-python = ">=3.7"
|
|
13
14
|
classifiers = [
|
|
14
15
|
"Programming Language :: Python :: 3",
|
cloud_submit-0.1/PKG-INFO
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: cloud-submit
|
|
3
|
-
Version: 0.1
|
|
4
|
-
Summary: A tool for building processing pipelines in Python and executing them locally or in the cloud.
|
|
5
|
-
Author: Martin Wiebusch
|
|
6
|
-
License-File: LICENSE
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Requires-Python: >=3.7
|
|
11
|
-
Requires-Dist: click
|
|
12
|
-
Requires-Dist: pyyaml
|
|
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
|
{cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/local_environment_handler.py
RENAMED
|
File without changes
|
{cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/local_execution_handler.py
RENAMED
|
File without changes
|
{cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/remote_environment_handler.py
RENAMED
|
File without changes
|
{cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/remote_execution_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloud_submit-0.1 → cloud_submit-0.1.1}/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
|