Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1046)

Unified Diff: third_party/google_appengine_cloudstorage/setup.py

Issue 139303023: add GCS support to docs server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bumped versions Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/google_appengine_cloudstorage/setup.py
diff --git a/third_party/google_appengine_cloudstorage/setup.py b/third_party/google_appengine_cloudstorage/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..dd1b052765a817fefef011debe7e92a21e5442c1
--- /dev/null
+++ b/third_party/google_appengine_cloudstorage/setup.py
@@ -0,0 +1,28 @@
+"""Setup specs for packaging, distributing, and installing gcs lib."""
+
+import distribute_setup
+distribute_setup.use_setuptools()
+
+
+import setuptools
+
+
+setuptools.setup(
+ name="GoogleAppEngineCloudStorageClient",
+ version="1.8.3.1",
+ packages=setuptools.find_packages(),
+ author="Google App Engine",
+ author_email="app-engine-pipeline-api@googlegroups.com",
+ keywords="google app engine cloud storage",
+ url="https://code.google.com/p/appengine-gcs-client/",
+ license="Apache License 2.0",
+ description=("This library is the preferred way of accessing Google "
+ "Cloud Storage from App Engine. It was designed to "
+ "replace the Files API. As a result it contains much "
+ "of the same functionality (streaming reads and writes but "
+ "not the complete set of GCS APIs). It also provides key "
+ "stability improvements and a better overall developer "
+ "experience."),
+ exclude_package_data={"": ["README"]},
+ zip_safe=True,
+)

Powered by Google App Engine
This is Rietveld 408576698