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.
Files changed (40) hide show
  1. cloud_submit-0.1.1/PKG-INFO +43 -0
  2. {cloud_submit-0.1 → cloud_submit-0.1.1}/pyproject.toml +2 -1
  3. cloud_submit-0.1/PKG-INFO +0 -12
  4. {cloud_submit-0.1 → cloud_submit-0.1.1}/.gitignore +0 -0
  5. {cloud_submit-0.1 → cloud_submit-0.1.1}/LICENSE +0 -0
  6. {cloud_submit-0.1 → cloud_submit-0.1.1}/README.md +0 -0
  7. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/csub/build_config.py +0 -0
  8. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/fit.py +0 -0
  9. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/generate.py +0 -0
  10. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/src/parameters.py +0 -0
  11. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/aws/userconfig/template.yaml +0 -0
  12. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/csub/build_config.py +0 -0
  13. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/fit.py +0 -0
  14. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/generate.py +0 -0
  15. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/src/parameters.py +0 -0
  16. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/basic/userconfig/template.yaml +0 -0
  17. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/csub/build_config.py +0 -0
  18. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/fit.py +0 -0
  19. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/generate.py +0 -0
  20. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/src/parameters.py +0 -0
  21. {cloud_submit-0.1 → cloud_submit-0.1.1}/docs/examples/multi-worker/userconfig/template.yaml +0 -0
  22. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/__init__.py +0 -0
  23. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/cli.py +0 -0
  24. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/config.py +0 -0
  25. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/controller.py +0 -0
  26. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/environment_handler.py +0 -0
  27. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/__init__.py +0 -0
  28. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/local_environment_handler.py +0 -0
  29. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/local_execution_handler.py +0 -0
  30. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/remote_environment_handler.py +0 -0
  31. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/remote_execution_handler.py +0 -0
  32. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/aws/s3_tools.py +0 -0
  33. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/local/environment_handler.py +0 -0
  34. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/envs/local/execution_handler.py +0 -0
  35. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/base_execution_handler.py +0 -0
  36. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/config.py +0 -0
  37. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/execute.py +0 -0
  38. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/execution/utils.py +0 -0
  39. {cloud_submit-0.1 → cloud_submit-0.1.1}/src/cloud_submit/images.py +0 -0
  40. {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