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

Side by Side Diff: third_party/cloud_storage/setup.py

Issue 1031663002: Increase maximum file upload to 100MB, use cloudstorage python library (Closed) Base URL: https://github.com/dart-lang/pub-dartlang.git@master
Patch Set: Add deprecation comment to old cloud_storage.py:open() function Created 5 years, 9 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
« no previous file with comments | « third_party/cloud_storage/distribute_setup.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.9.15.0",
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
« no previous file with comments | « third_party/cloud_storage/distribute_setup.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698