Index: third_party/google-endpoints/google_apitools-0.4.15.dist-info/METADATA |
diff --git a/third_party/google-endpoints/google_apitools-0.4.15.dist-info/METADATA b/third_party/google-endpoints/google_apitools-0.4.15.dist-info/METADATA |
new file mode 100644 |
index 0000000000000000000000000000000000000000..023d1bb6759f6051b2d57adbbaabc838321993cd |
--- /dev/null |
+++ b/third_party/google-endpoints/google_apitools-0.4.15.dist-info/METADATA |
@@ -0,0 +1,74 @@ |
+Metadata-Version: 2.0 |
+Name: google-apitools |
+Version: 0.4.15 |
+Summary: client libraries for humans |
+Home-page: http://github.com/craigcitro/apitools |
+Author: Craig Citro |
+Author-email: craigcitro@google.com |
+License: Apache 2.0 |
+Keywords: apitools |
+Platform: UNKNOWN |
+Classifier: License :: OSI Approved :: Apache Software License |
+Classifier: Topic :: Software Development :: Libraries |
+Classifier: Topic :: Software Development :: Libraries :: Python Modules |
+Requires-Dist: httplib2 (>=0.8) |
+Requires-Dist: oauth2client (>=1.5.2) |
+Requires-Dist: setuptools (>=18.5) |
+Requires-Dist: six (>=1.9.0) |
+Provides-Extra: cli |
+Requires-Dist: google-apputils (>=0.4.0); extra == 'cli' |
+Requires-Dist: python-gflags (>=2.0); extra == 'cli' |
+Provides-Extra: testing |
+Requires-Dist: google-apputils (>=0.4.0); extra == 'testing' |
+Requires-Dist: mock (>=1.0.1); extra == 'testing' |
+Requires-Dist: unittest2 (>=0.5.1); extra == 'testing' |
+ |
+google-apitools |
+=============== |
+ |
+|pypi| |build| |coverage| |
+ |
+``google-apitools`` is a collection of utilities to make it easier to build |
+client-side tools, especially those that talk to Google APIs. |
+ |
+**NOTE**: This library is stable, but in maintenance mode, and not under |
+active development. However, any bugs or security issues will be fixed |
+promptly. |
+ |
+Installing as a library |
+----------------------- |
+ |
+To install the library into the current virtual environment:: |
+ |
+ $ pip install google-apitools |
+ |
+Installing the command-line tools |
+--------------------------------- |
+ |
+To install the command-line scripts into the current virtual environment:: |
+ |
+ $ pip install google-apitools[cli] |
+ |
+Running the tests |
+----------------- |
+ |
+First, install the testing dependencies:: |
+ |
+ $ pip install google-apitools[testing] |
+ |
+and the ``nose`` testrunner:: |
+ |
+ $ pip install nose |
+ |
+Then run the tests:: |
+ |
+ $ nosetests |
+ |
+.. |build| image:: https://travis-ci.org/google/apitools.svg?branch=master |
+ :target: https://travis-ci.org/google/apitools |
+.. |pypi| image:: https://img.shields.io/pypi/v/google-apitools.svg |
+ :target: https://pypi.python.org/pypi/google-apitools |
+.. |coverage| image:: https://coveralls.io/repos/google/apitools/badge.svg?branch=master |
+ :target: https://coveralls.io/r/google/apitools?branch=master |
+ |
+ |