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