sagemaker-studio 0.0.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.
- sagemaker_studio-0.0.1/PKG-INFO +26 -0
- sagemaker_studio-0.0.1/README.md +0 -0
- sagemaker_studio-0.0.1/sagemaker_studio/__init__.py +0 -0
- sagemaker_studio-0.0.1/sagemaker_studio.egg-info/PKG-INFO +26 -0
- sagemaker_studio-0.0.1/sagemaker_studio.egg-info/SOURCES.txt +7 -0
- sagemaker_studio-0.0.1/sagemaker_studio.egg-info/dependency_links.txt +1 -0
- sagemaker_studio-0.0.1/sagemaker_studio.egg-info/top_level.txt +1 -0
- sagemaker_studio-0.0.1/setup.cfg +4 -0
- sagemaker_studio-0.0.1/setup.py +27 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: sagemaker_studio
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python library to interact with Amazon SageMaker Unified Studio
|
|
5
|
+
Home-page: https://aws.amazon.com/sagemaker/
|
|
6
|
+
Author: Amazon Web Services
|
|
7
|
+
License: Apache License 2.0
|
|
8
|
+
Keywords: AWS,Amazon,SageMaker,SageMaker Unified Studio,SDK
|
|
9
|
+
Platform: Linux
|
|
10
|
+
Platform: Mac OS X
|
|
11
|
+
Platform: Windows
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Requires-Python: >=3.11
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: keywords
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: platform
|
|
25
|
+
Dynamic: requires-python
|
|
26
|
+
Dynamic: summary
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: sagemaker_studio
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python library to interact with Amazon SageMaker Unified Studio
|
|
5
|
+
Home-page: https://aws.amazon.com/sagemaker/
|
|
6
|
+
Author: Amazon Web Services
|
|
7
|
+
License: Apache License 2.0
|
|
8
|
+
Keywords: AWS,Amazon,SageMaker,SageMaker Unified Studio,SDK
|
|
9
|
+
Platform: Linux
|
|
10
|
+
Platform: Mac OS X
|
|
11
|
+
Platform: Windows
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Requires-Python: >=3.11
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: keywords
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: platform
|
|
25
|
+
Dynamic: requires-python
|
|
26
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sagemaker_studio
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from setuptools import find_packages, setup
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="sagemaker_studio",
|
|
8
|
+
version="0.0.1",
|
|
9
|
+
author="Amazon Web Services",
|
|
10
|
+
url="https://aws.amazon.com/sagemaker/",
|
|
11
|
+
description="Python library to interact with Amazon SageMaker Unified Studio",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
license="Apache License 2.0",
|
|
15
|
+
packages=find_packages(),
|
|
16
|
+
python_requires=">=3.11",
|
|
17
|
+
platforms="Linux, Mac OS X, Windows",
|
|
18
|
+
keywords=["AWS", "Amazon", "SageMaker", "SageMaker Unified Studio", "SDK"],
|
|
19
|
+
classifiers=[
|
|
20
|
+
"Programming Language :: Python",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"License :: OSI Approved :: Apache Software License",
|
|
24
|
+
],
|
|
25
|
+
install_requires=[
|
|
26
|
+
]
|
|
27
|
+
)
|