aws-sdk-python 0.2.0__tar.gz → 0.3.0__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.
- {aws_sdk_python-0.2.0 → aws_sdk_python-0.3.0}/PKG-INFO +7 -7
- {aws_sdk_python-0.2.0 → aws_sdk_python-0.3.0}/pyproject.toml +3 -3
- {aws_sdk_python-0.2.0 → aws_sdk_python-0.3.0}/src/aws_sdk_python/__init__.py +1 -1
- {aws_sdk_python-0.2.0 → aws_sdk_python-0.3.0}/LICENSE +0 -0
- {aws_sdk_python-0.2.0 → aws_sdk_python-0.3.0}/NOTICE +0 -0
- {aws_sdk_python-0.2.0 → aws_sdk_python-0.3.0}/README.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aws-sdk-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Meta-package containing all AWS service clients.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -19,15 +19,15 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.14
|
|
20
20
|
Requires-Python: >=3.12
|
|
21
21
|
Provides-Extra: all
|
|
22
|
-
Requires-Dist: aws-sdk-bedrock-runtime==0.
|
|
23
|
-
Requires-Dist: aws-sdk-sagemaker-runtime-http2==0.
|
|
24
|
-
Requires-Dist: aws-sdk-transcribe-streaming==0.
|
|
22
|
+
Requires-Dist: aws-sdk-bedrock-runtime==0.3.0; extra == 'all'
|
|
23
|
+
Requires-Dist: aws-sdk-sagemaker-runtime-http2==0.3.0; extra == 'all'
|
|
24
|
+
Requires-Dist: aws-sdk-transcribe-streaming==0.3.0; extra == 'all'
|
|
25
25
|
Provides-Extra: bedrock-runtime
|
|
26
|
-
Requires-Dist: aws-sdk-bedrock-runtime==0.
|
|
26
|
+
Requires-Dist: aws-sdk-bedrock-runtime==0.3.0; extra == 'bedrock-runtime'
|
|
27
27
|
Provides-Extra: sagemaker-runtime-http2
|
|
28
|
-
Requires-Dist: aws-sdk-sagemaker-runtime-http2==0.
|
|
28
|
+
Requires-Dist: aws-sdk-sagemaker-runtime-http2==0.3.0; extra == 'sagemaker-runtime-http2'
|
|
29
29
|
Provides-Extra: transcribe-streaming
|
|
30
|
-
Requires-Dist: aws-sdk-transcribe-streaming==0.
|
|
30
|
+
Requires-Dist: aws-sdk-transcribe-streaming==0.3.0; extra == 'transcribe-streaming'
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
|
|
33
33
|
# AWS SDK for Python
|
|
@@ -22,9 +22,9 @@ classifiers = [
|
|
|
22
22
|
dependencies = []
|
|
23
23
|
|
|
24
24
|
[project.optional-dependencies]
|
|
25
|
-
bedrock_runtime = ["aws_sdk_bedrock_runtime==0.
|
|
26
|
-
sagemaker_runtime_http2 = ["aws_sdk_sagemaker_runtime_http2==0.
|
|
27
|
-
transcribe_streaming = ["aws_sdk_transcribe_streaming==0.
|
|
25
|
+
bedrock_runtime = ["aws_sdk_bedrock_runtime==0.3.0"]
|
|
26
|
+
sagemaker_runtime_http2 = ["aws_sdk_sagemaker_runtime_http2==0.3.0"]
|
|
27
|
+
transcribe_streaming = ["aws_sdk_transcribe_streaming==0.3.0"]
|
|
28
28
|
all = [
|
|
29
29
|
"aws_sdk_python[bedrock_runtime]",
|
|
30
30
|
"aws_sdk_python[sagemaker_runtime_http2]",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|