Skip to content

Commit 0429d52

Browse files
author
David Marteau
committed
Add moduleauthor markup
1 parent 97d67b8 commit 0429d52

14 files changed

+27
-4
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ upload_doc:
3434
rsync -av build/doc/ lbsdoc:/home/jenkins/datadoc/docs/pylr
3535

3636
clean:
37+
rm -rf build
3738
rm -rf dist
3839
rm -rf pylr/*.pyc
3940

doc/olive.rst doc/cake.rst

File renamed without changes.

doc/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Content
2222
status
2323
architecture
2424
pylr
25-
olive
2625

2726
Indices and tables
2827
##################

pylr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'''
33
Created on 4 déc. 2013
44
5-
.. moduleauthor:: Mappy S.A
5+
.. moduleauthor:: David Marteau <[email protected]>
66
77
OpenLR decoder
88

pylr/binary.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# -*- coding: utf-8 -*-
22
''' Support definition and intermediate parsing of binary encoded locations
3+
4+
.. moduleauthor:: David Marteau <[email protected]>
5+
36
'''
47

58
from collections import namedtuple

pylr/constants.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# -*- coding: utf-8 -*-
22
''' Constante definitions
3+
4+
.. moduleauthor:: David Marteau <[email protected]>
35
'''
46

57

pylr/decoder.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# -*- coding: utf-8 -*-
22
''' OpenLR decoder and database interfaces
33
4+
.. moduleauthor:: David Marteau <[email protected]>
5+
46
Pylr use an abstract mapdatabase interface for accessing grapth data.
57
The map database is passed to the decoder for calculating route and shortest path between
68
location reference points.

pylr/parser.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# -*- coding: utf-8 -*-
22
''' Location parser
3+
4+
.. moduleauthor:: David Marteau <[email protected]>
5+
36
'''
47

58
from collections import namedtuple

pylr/rating.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# -*- coding: utf-8 -*-
22
''' Handle Form Of Way (fow) rating
3+
4+
.. moduleauthor:: David Marteau <[email protected]>
5+
36
'''
47

58

pylr/tests/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'''
33
Created on 6 déc. 2013
44
5-
@author: dmarteau
5+
.. moduleauthor:: David Marteau <[email protected]>
66
'''
77

88
from pylr import ( LocationType,

pylr/tests/units/__main__.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
.. moduleauthor:: David Marteau <[email protected]>
4+
"""
25

36
import sys
47

pylr/tests/units/test_decoder.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
'''
33
Created on 8 janv. 2014
44
5-
@author: dmarteau
5+
.. moduleauthor:: David Marteau <[email protected]>
6+
67
'''
78
from __future__ import print_function
89

pylr/utils.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# -*- coding: utf-8 -*-
22
''' Some utilities
3+
4+
.. moduleauthor:: David Marteau <[email protected]>
5+
36
'''
47

58

pylr/values.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# -*- coding: utf-8 -*-
22
''' Define functions for transforming encoded values
3+
4+
.. moduleauthor:: David Marteau <[email protected]>
5+
36
'''
47

58
from .utils import signum

0 commit comments

Comments
 (0)