File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
APRS library for Python
2
2
~~~~~~~~~~~~~~~~~~~~~~~
3
3
4
- |pypi | |coverage | |scru | |master_build |
4
+ |pypi | |coverage | |scru | |master_build | | docs |
5
5
6
6
A python library for dealing with APRS.
7
7
It can be used to interact with APRS-IS servers, sending and receiving.
8
8
Parsing functionally is also included, but currently doesn't implement the full spec.
9
9
10
- See `full documentation <http://rgp.io/ aprs-python/ >`_.
10
+ See `the documentation <http://aprs-python.readthedocs.io/en/latest / >`_.
11
11
12
12
Installation
13
13
============
@@ -16,7 +16,7 @@ To install the latest release from ``pypi``::
16
16
17
17
pip install aprslib
18
18
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/ >`_::
20
20
21
21
pip install git+https://github.com/rossengeorgiev/aprs-python
22
22
@@ -44,3 +44,6 @@ Contribution
44
44
:target: http://travis-ci.org/rossengeorgiev/aprs-python
45
45
:alt: Build status of master branch
46
46
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
Original file line number Diff line number Diff line change 8
8
9
9
here = path .abspath (path .dirname (__file__ ))
10
10
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' )
12
15
13
16
setup (
14
17
name = 'aprslib' ,
You can’t perform that action at this time.
0 commit comments