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

Unified Diff: third_party/gsutil/third_party/apitools/setup.py

Issue 1380943003: Roll version of gsutil to 4.15. (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: rebase Created 5 years 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/gsutil/third_party/apitools/setup.py
diff --git a/third_party/gsutil/third_party/apitools/setup.py b/third_party/gsutil/third_party/apitools/setup.py
index 0da6c70d534b3d795f8cb85d9eb4822cf2737f22..19a6d589cbc87e03e5c534bd860203fcf4d78367 100755
--- a/third_party/gsutil/third_party/apitools/setup.py
+++ b/third_party/gsutil/third_party/apitools/setup.py
@@ -31,7 +31,7 @@ REQUIRED_PACKAGES = [
'httplib2>=0.8',
'oauth2client>=1.4.8',
'protorpc>=0.9.1',
- 'six>=1.8.0',
+ 'six>=1.9.0',
]
CLI_PACKAGES = [
@@ -47,14 +47,15 @@ TESTING_PACKAGES = [
CONSOLE_SCRIPTS = [
'gen_client = apitools.gen.gen_client:run_main',
- ]
+ 'oauth2l = apitools.scripts.oauth2l:run_main [cli]',
+]
py_version = platform.python_version()
if py_version < '2.7':
REQUIRED_PACKAGES.append('argparse>=1.2.1')
-_APITOOLS_VERSION = '0.4.8'
+_APITOOLS_VERSION = '0.4.10'
with open('README.rst') as fileobj:
README = fileobj.read()
@@ -78,6 +79,11 @@ setuptools.setup(
'cli': CLI_PACKAGES,
'testing': TESTING_PACKAGES,
},
+ # Add in any packaged data.
+ include_package_data=True,
+ package_data={
+ 'apitools.data': ['*'],
+ },
# PyPI package information.
classifiers=[
'License :: OSI Approved :: Apache Software License',

Powered by Google App Engine
This is Rietveld 408576698