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

Side by Side 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, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 """Setup specs for packaging, distributing, and installing gcs lib."""
2
3 import distribute_setup
4 distribute_setup.use_setuptools()
5
6
7 import setuptools
8
9
10 setuptools.setup(
11 name="GoogleAppEngineCloudStorageClient",
12 version="1.8.3.1",
13 packages=setuptools.find_packages(),
14 author="Google App Engine",
15 author_email="app-engine-pipeline-api@googlegroups.com",
16 keywords="google app engine cloud storage",
17 url="https://code.google.com/p/appengine-gcs-client/",
18 license="Apache License 2.0",
19 description=("This library is the preferred way of accessing Google "
20 "Cloud Storage from App Engine. It was designed to "
21 "replace the Files API. As a result it contains much "
22 "of the same functionality (streaming reads and writes but "
23 "not the complete set of GCS APIs). It also provides key "
24 "stability improvements and a better overall developer "
25 "experience."),
26 exclude_package_data={"": ["README"]},
27 zip_safe=True,
28 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698