Skip to content

Commit 0017a7c

Browse files
update documetation links to rtd; #20
1 parent 5563a6d commit 0017a7c

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
APRS library for Python
22
~~~~~~~~~~~~~~~~~~~~~~~
33

4-
|pypi| |coverage| |scru| |master_build|
4+
|pypi| |coverage| |scru| |master_build| |docs|
55

66
A python library for dealing with APRS.
77
It can be used to interact with APRS-IS servers, sending and receiving.
88
Parsing functionally is also included, but currently doesn't implement the full spec.
99

10-
See `full documentation <http://rgp.io/aprs-python/>`_.
10+
See `the documentation <http://aprs-python.readthedocs.io/en/latest/>`_.
1111

1212
Installation
1313
============
@@ -16,7 +16,7 @@ To install the latest release from ``pypi``::
1616

1717
pip install aprslib
1818

19-
To install the latest dev version from the `Github repo <https://github.com/rossengeorgiev/aprs-python://github.com/rossengeorgiev/aprs-python/>`_::
19+
To install the latest dev version from the `Github repo <https://github.com/rossengeorgiev/aprs-python/>`_::
2020

2121
pip install git+https://github.com/rossengeorgiev/aprs-python
2222

@@ -44,3 +44,6 @@ Contribution
4444
:target: http://travis-ci.org/rossengeorgiev/aprs-python
4545
:alt: Build status of master branch
4646

47+
.. |docs| image:: https://readthedocs.org/projects/aprs-python/badge/?version=latest
48+
:target: http://aprs-python.readthedocs.io/en/latest/?badge=latest
49+
:alt: Documentation status

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88

99
here = path.abspath(path.dirname(__file__))
1010
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
11-
long_description = f.read()
11+
long_description = f.read()\
12+
.replace('.io/en/latest/', '.io/en/stable/')\
13+
.replace('?badge=latest', '?badge=stable')\
14+
.replace('projects/aprs-python/badge/?version=latest', 'projects/aprs-python/badge/?version=stable')
1215

1316
setup(
1417
name='aprslib',

0 commit comments

Comments
 (0)