diff --git a/README.md b/README.md index 4b1b7a4..602993e 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,19 @@ -# Google App Engine Python 3 Standard Environment API library (private preview) +# Google App Engine services SDK for Python 3 (preview) -This is a private preview release of the App Engine SDK for Python 3. It provides access +This is a preview release of the App Engine services SDK for Python 3. It provides access to various API endpoints that were previously only available on the Python 2.7 runtime. -To sign up for the private preview, visit https://docs.google.com/forms/d/e/1FAIpQLSd1hFLA2UFSYwIMxm9ZI3pwigORZBgjJRH0qrnhtE7nvhhRCQ/viewform. +See the +[documentation](https://cloud.google.com/appengine/docs/standard/python3/services/access) to learn more about using this SDK. + +We are working to support more App Engine bundled service APIs for Python 3. To sign up for the private preview, visit https://docs.google.com/forms/d/e/1FAIpQLSd1hFLA2UFSYwIMxm9ZI3pwigORZBgjJRH0qrnhtE7nvhhRCQ/viewform. ## Using the SDK In your `requirements.txt` file, add the following: -`appengine-python-standard>=0.2.1` +`appengine-python-standard>=0.2.2` In your app's `app.yaml`, add the following: diff --git a/setup.py b/setup.py index 4798a69..de5e759 100644 --- a/setup.py +++ b/setup.py @@ -5,9 +5,9 @@ setuptools.setup( name="appengine-python-standard", - version="0.2.1", + version="0.2.2", author="Google LLC", - description="Google App Engine Python 3 Standard Environment API library", + description="Google App Engine services SDK for Python 3", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/GoogleCloudPlatform/appengine-python-standard",