blob: e9eae94266f8e48d33cb9a97ebc9e0317ce7c9e2 [file] [log] [blame]
Tres Seaver623d5d22014-11-20 11:23:03 -05001google-apitools
2===============
3
Danny Hermes9a0e3ca2015-03-24 18:15:51 -07004|pypi| |build| |coverage|
Tres Seaver623d5d22014-11-20 11:23:03 -05005
6``google-apitools`` is a collection of utilities to make it easier to build
7client-side tools, especially those that talk to Google APIs.
8
Craig Citrocb4dce42015-02-17 17:00:51 -08009**NOTE**: This library is stable, but in maintenance mode, and not under
10active development. However, any bugs or security issues will be fixed
11promptly.
12
Tres Seaver623d5d22014-11-20 11:23:03 -050013Installing as a library
14-----------------------
15
16To install the library into the current virtual environment::
17
18 $ pip install google-apitools
19
20Installing the command-line tools
21---------------------------------
22
23To install the command-line scripts into the current virtual environment::
24
25 $ pip install google-apitools[cli]
26
27Running the tests
28-----------------
29
30First, install the testing dependencies::
31
32 $ pip install google-apitools[testing]
33
34and the ``nose`` testrunner::
35
36 $ pip install nose
37
38Then run the tests::
39
40 $ nosetests
Danny Hermesb5d4d5b2015-03-24 10:59:28 -070041
42.. |build| image:: https://travis-ci.org/google/apitools.svg?branch=master
43 :target: https://travis-ci.org/google/apitools
44.. |pypi| image:: https://img.shields.io/pypi/v/google-apitools.svg
45 :target: https://pypi.python.org/pypi/google-apitools
Craig Citro0a349342015-05-24 14:28:59 -070046.. |coverage| image:: https://coveralls.io/repos/google/apitools/badge.svg?branch=master
Danny Hermes9a0e3ca2015-03-24 18:15:51 -070047 :target: https://coveralls.io/r/google/apitools?branch=master