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

Unified Diff: tools/telemetry/third_party/gsutilz/third_party/apitools/setup.py

Issue 1376593003: Roll gsutil version to 4.15. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: tools/telemetry/third_party/gsutilz/third_party/apitools/setup.py
diff --git a/tools/telemetry/third_party/gsutilz/third_party/apitools/setup.py b/tools/telemetry/third_party/gsutilz/third_party/apitools/setup.py
old mode 100755
new mode 100644
index 0da6c70d534b3d795f8cb85d9eb4822cf2737f22..19a6d589cbc87e03e5c534bd860203fcf4d78367
--- a/tools/telemetry/third_party/gsutilz/third_party/apitools/setup.py
+++ b/tools/telemetry/third_party/gsutilz/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