zowe-python-sdk-bundle 1.0.0.dev23__tar.gz → 1.0.0.dev25__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.
@@ -1,15 +1,30 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: zowe-python-sdk-bundle
3
- Version: 1.0.0.dev23
3
+ Version: 1.0.0.dev25
4
4
  Summary: Zowe Python SDK
5
5
  Home-page: https://github.com/zowe/zowe-client-python-sdk
6
6
  Author: Zowe
7
7
  Author-email: zowe.robot@gmail.com
8
8
  License: EPL-2.0
9
9
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)
12
12
  Description-Content-Type: text/markdown
13
+ Requires-Dist: zowe.zos_console_for_zowe_sdk==1.0.0-dev25
14
+ Requires-Dist: zowe.zos_files_for_zowe_sdk==1.0.0-dev25
15
+ Requires-Dist: zowe.zos_tso_for_zowe_sdk==1.0.0-dev25
16
+ Requires-Dist: zowe.zos_jobs_for_zowe_sdk==1.0.0-dev25
17
+ Requires-Dist: zowe.zosmf_for_zowe_sdk==1.0.0-dev25
18
+ Requires-Dist: zowe.workflows_for_zowe_sdk==1.0.0-dev25
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: license
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
13
28
 
14
29
  # Zowe Client Python SDK
15
30
 
@@ -61,8 +76,8 @@ For more information on the available sub-packages click [HERE](https://zowe-cli
61
76
  The Zowe core package has dependencies on the packages listed below:
62
77
 
63
78
  ```
64
- commentjson
65
79
  deepmerge
80
+ json5
66
81
  jsonschema
67
82
  pyyaml
68
83
  requests>=2.22
@@ -79,7 +94,7 @@ pip install -U --pre zowe.core-for-zowe-sdk[secrets]
79
94
 
80
95
  Ensure the following prerequisites are installed and on your PATH:
81
96
 
82
- - Python >= 3.9 and `pip`
97
+ - Python >= 3.10 and `pip`
83
98
  - Cargo >= 1.72 (to build Rust bindings for Secrets SDK)
84
99
  - Visual Studio Build Tools >= 2015 (Windows only)
85
100
 
@@ -172,6 +187,7 @@ Currently, the Zowe Python SDK supports the following interfaces:
172
187
  - Start/End TSO address space
173
188
  - Ping TSO address space
174
189
  - Issue TSO command
190
+ - z/OSMF Workflows
175
191
 
176
192
  **Important**: Notice that the below examples assume that you have already created
177
193
  an object for the sub-package of your preference just like in the quickstart example.
@@ -17,3 +17,4 @@ For more information and syntax examples, refer to the readme file in each packa
17
17
  - [z/OS Jobs](zos_jobs/README.md): Work with batch jobs on z/OS.
18
18
  - [z/OS TSO](zos_tso/README.md): Interact with TSO/E adress spaces on z/OS.
19
19
  - [z/OSMF](zosmf/README.md): Query z/OSMF data (e.g.: connection status, list of available systems).
20
+ - [z/OSMF Workflows](workflows/README.md): Work with z/OSMF Workflows.
@@ -44,7 +44,7 @@ if __name__ == "__main__":
44
44
  license="EPL-2.0",
45
45
  classifiers=[
46
46
  "Programming Language :: Python :: 3",
47
- "Programming Language :: Python :: 3.9",
47
+ "Programming Language :: Python :: 3.10",
48
48
  "License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
49
49
  ],
50
50
  install_requires=[
@@ -53,6 +53,7 @@ if __name__ == "__main__":
53
53
  resolve_sdk_dep("zos_tso", "==" + __version__),
54
54
  resolve_sdk_dep("zos_jobs", "==" + __version__),
55
55
  resolve_sdk_dep("zosmf", "==" + __version__),
56
+ resolve_sdk_dep("workflows", "==" + __version__),
56
57
  ],
57
58
  py_modules=[],
58
59
  )
@@ -1,15 +1,30 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: zowe-python-sdk-bundle
3
- Version: 1.0.0.dev23
3
+ Version: 1.0.0.dev25
4
4
  Summary: Zowe Python SDK
5
5
  Home-page: https://github.com/zowe/zowe-client-python-sdk
6
6
  Author: Zowe
7
7
  Author-email: zowe.robot@gmail.com
8
8
  License: EPL-2.0
9
9
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)
12
12
  Description-Content-Type: text/markdown
13
+ Requires-Dist: zowe.zos_console_for_zowe_sdk==1.0.0-dev25
14
+ Requires-Dist: zowe.zos_files_for_zowe_sdk==1.0.0-dev25
15
+ Requires-Dist: zowe.zos_tso_for_zowe_sdk==1.0.0-dev25
16
+ Requires-Dist: zowe.zos_jobs_for_zowe_sdk==1.0.0-dev25
17
+ Requires-Dist: zowe.zosmf_for_zowe_sdk==1.0.0-dev25
18
+ Requires-Dist: zowe.workflows_for_zowe_sdk==1.0.0-dev25
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: license
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
13
28
 
14
29
  # Zowe Client Python SDK
15
30
 
@@ -61,8 +76,8 @@ For more information on the available sub-packages click [HERE](https://zowe-cli
61
76
  The Zowe core package has dependencies on the packages listed below:
62
77
 
63
78
  ```
64
- commentjson
65
79
  deepmerge
80
+ json5
66
81
  jsonschema
67
82
  pyyaml
68
83
  requests>=2.22
@@ -79,7 +94,7 @@ pip install -U --pre zowe.core-for-zowe-sdk[secrets]
79
94
 
80
95
  Ensure the following prerequisites are installed and on your PATH:
81
96
 
82
- - Python >= 3.9 and `pip`
97
+ - Python >= 3.10 and `pip`
83
98
  - Cargo >= 1.72 (to build Rust bindings for Secrets SDK)
84
99
  - Visual Studio Build Tools >= 2015 (Windows only)
85
100
 
@@ -172,6 +187,7 @@ Currently, the Zowe Python SDK supports the following interfaces:
172
187
  - Start/End TSO address space
173
188
  - Ping TSO address space
174
189
  - Issue TSO command
190
+ - z/OSMF Workflows
175
191
 
176
192
  **Important**: Notice that the below examples assume that you have already created
177
193
  an object for the sub-package of your preference just like in the quickstart example.
@@ -0,0 +1,6 @@
1
+ zowe.zos_console_for_zowe_sdk==1.0.0-dev25
2
+ zowe.zos_files_for_zowe_sdk==1.0.0-dev25
3
+ zowe.zos_tso_for_zowe_sdk==1.0.0-dev25
4
+ zowe.zos_jobs_for_zowe_sdk==1.0.0-dev25
5
+ zowe.zosmf_for_zowe_sdk==1.0.0-dev25
6
+ zowe.workflows_for_zowe_sdk==1.0.0-dev25
@@ -1,5 +0,0 @@
1
- zowe.zos_console_for_zowe_sdk==1.0.0-dev23
2
- zowe.zos_files_for_zowe_sdk==1.0.0-dev23
3
- zowe.zos_tso_for_zowe_sdk==1.0.0-dev23
4
- zowe.zos_jobs_for_zowe_sdk==1.0.0-dev23
5
- zowe.zosmf_for_zowe_sdk==1.0.0-dev23