OLD | NEW |
(Empty) | |
| 1 Metadata-Version: 2.0 |
| 2 Name: google-apitools |
| 3 Version: 0.4.15 |
| 4 Summary: client libraries for humans |
| 5 Home-page: http://github.com/craigcitro/apitools |
| 6 Author: Craig Citro |
| 7 Author-email: craigcitro@google.com |
| 8 License: Apache 2.0 |
| 9 Keywords: apitools |
| 10 Platform: UNKNOWN |
| 11 Classifier: License :: OSI Approved :: Apache Software License |
| 12 Classifier: Topic :: Software Development :: Libraries |
| 13 Classifier: Topic :: Software Development :: Libraries :: Python Modules |
| 14 Requires-Dist: httplib2 (>=0.8) |
| 15 Requires-Dist: oauth2client (>=1.5.2) |
| 16 Requires-Dist: setuptools (>=18.5) |
| 17 Requires-Dist: six (>=1.9.0) |
| 18 Provides-Extra: cli |
| 19 Requires-Dist: google-apputils (>=0.4.0); extra == 'cli' |
| 20 Requires-Dist: python-gflags (>=2.0); extra == 'cli' |
| 21 Provides-Extra: testing |
| 22 Requires-Dist: google-apputils (>=0.4.0); extra == 'testing' |
| 23 Requires-Dist: mock (>=1.0.1); extra == 'testing' |
| 24 Requires-Dist: unittest2 (>=0.5.1); extra == 'testing' |
| 25 |
| 26 google-apitools |
| 27 =============== |
| 28 |
| 29 |pypi| |build| |coverage| |
| 30 |
| 31 ``google-apitools`` is a collection of utilities to make it easier to build |
| 32 client-side tools, especially those that talk to Google APIs. |
| 33 |
| 34 **NOTE**: This library is stable, but in maintenance mode, and not under |
| 35 active development. However, any bugs or security issues will be fixed |
| 36 promptly. |
| 37 |
| 38 Installing as a library |
| 39 ----------------------- |
| 40 |
| 41 To install the library into the current virtual environment:: |
| 42 |
| 43 $ pip install google-apitools |
| 44 |
| 45 Installing the command-line tools |
| 46 --------------------------------- |
| 47 |
| 48 To install the command-line scripts into the current virtual environment:: |
| 49 |
| 50 $ pip install google-apitools[cli] |
| 51 |
| 52 Running the tests |
| 53 ----------------- |
| 54 |
| 55 First, install the testing dependencies:: |
| 56 |
| 57 $ pip install google-apitools[testing] |
| 58 |
| 59 and the ``nose`` testrunner:: |
| 60 |
| 61 $ pip install nose |
| 62 |
| 63 Then run the tests:: |
| 64 |
| 65 $ nosetests |
| 66 |
| 67 .. |build| image:: https://travis-ci.org/google/apitools.svg?branch=master |
| 68 :target: https://travis-ci.org/google/apitools |
| 69 .. |pypi| image:: https://img.shields.io/pypi/v/google-apitools.svg |
| 70 :target: https://pypi.python.org/pypi/google-apitools |
| 71 .. |coverage| image:: https://coveralls.io/repos/google/apitools/badge.svg?branc
h=master |
| 72 :target: https://coveralls.io/r/google/apitools?branch=master |
| 73 |
| 74 |
OLD | NEW |