Skip to content

Commit 093245f

Browse files
author
Sam Clements
committed
Refer to the package as riemann-client in the documentation
This replaces use of the name python-riemann-client, and matches the style of my other python libraries.
1 parent 4ef66c5 commit 093245f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
=====================
2-
python-riemann-client
3-
=====================
1+
==============
2+
riemann-client
3+
==============
44

55
.. image:: https://pypip.in/v/riemann-client/badge.png
66
:target: https://pypi.python.org/pypi/riemann-client
77

88
.. image:: https://travis-ci.org/borntyping/python-riemann-client.png?branch=master
99
:target: https://travis-ci.org/borntyping/python-riemann-client
1010

11-
A `Riemann <http://riemann.io/>`_ client and command line tool.
11+
A `Riemann <http://riemann.io/>`_ client library and command line tool for Python.
1212

1313
Usage
1414
-----
@@ -31,7 +31,7 @@ As a library::
3131
Installation
3232
------------
3333

34-
``python-riemann-client`` requires Python 2.6 or 2.7, and can be installed with ``pip install riemann-client``. Python 3 is not supported due to the dependency on the Google `protobuf <https://pypi.python.org/pypi/protobuf>`_ package.
34+
``riemann-client`` requires Python 2.6 or 2.7, and can be installed with ``pip install riemann-client``. Python 3 is not supported due to the dependency on the Google `protobuf <https://pypi.python.org/pypi/protobuf>`_ package.
3535

3636
Requirements
3737
^^^^^^^^^^^^
@@ -55,12 +55,12 @@ Version 3.0.0
5555
Licence
5656
-------
5757

58-
``python-riemann-client`` is licensed under the `MIT Licence <http://opensource.org/licenses/MIT>`_. The protocol buffer definition is sourced from the `Riemann Java client <https://github.com/aphyr/riemann-java-client/blob/0c4a1a255be6f33069d7bb24d0cc7efb71bf4bc8/src/main/proto/riemann/proto.proto>`_, which is licensed under the `Apache Licence <http://www.apache.org/licenses/LICENSE-2.0>`_.
58+
``riemann-client`` is licensed under the `MIT Licence <http://opensource.org/licenses/MIT>`_. The protocol buffer definition is sourced from the `Riemann Java client <https://github.com/aphyr/riemann-java-client/blob/0c4a1a255be6f33069d7bb24d0cc7efb71bf4bc8/src/main/proto/riemann/proto.proto>`_, which is licensed under the `Apache Licence <http://www.apache.org/licenses/LICENSE-2.0>`_.
5959

6060
Authors
6161
-------
6262

63-
``python-riemann-client`` was written by `Sam Clements <https://github.com/borntyping>`_, while working at `DataSift <https://github.com/datasift>`_.
63+
``riemann-client`` was written by `Sam Clements <https://github.com/borntyping>`_, while working at `DataSift <https://github.com/datasift>`_.
6464

6565
.. image:: https://0.gravatar.com/avatar/8dd5661684a7385fe723b7e7588e91ee?d=https%3A%2F%2Fidenticons.github.com%2Fe83ef7586374403a328e175927b98cac.png&r=x&s=40
6666
.. image:: https://1.gravatar.com/avatar/a3a6d949b43b6b880ffb3e277a65f49d?d=https%3A%2F%2Fidenticons.github.com%2F065affbc170e2511eeacb3bd0e975ec1.png&r=x&s=40

riemann_client/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
parser.add_argument(
2727
'-v', '--version', action='version',
28-
version='python-riemann-client v{version} by {author}'.format(
28+
version='riemann-client v{version} by {author}'.format(
2929
version=riemann_client.__version__,
3030
author=riemann_client.__author__),
3131
help="Show this program's version and exit")

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ exclude_lines=
4646
class NullHandler
4747

4848
[html]
49-
title=python-riemann-client coverage report
49+
title=riemann-client coverage report
5050
directory=.tox/py26-coverage

0 commit comments

Comments
 (0)