| Index: third_party/cloud_storage/setup.py
|
| diff --git a/third_party/cloud_storage/setup.py b/third_party/cloud_storage/setup.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f1fb5f602523836fc404cd7c36ed579a18a757e5
|
| --- /dev/null
|
| +++ b/third_party/cloud_storage/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.9.15.0",
|
| + 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,
|
| +)
|
|
|