1 __version__ = '0.22'
2 '''The version of ais-py'''
3 __docformat__ = 'epytext en'
4 __author__ = 'Kurt Schwehr <kurt@ccom.unh.edu>'
5 '''The primary author of ais-py'''
6 __url__ = 'http://vislab-ccom.unh.edu/~schwehr/ais/'
7 '''The ais-py homepage'''
8
9 __doc__='''
10 Python modudule for Automatic Indentification System (AIS). This is
11 the 3rd iteration of creating an AIS codec package in python. This
12 version is more a compiler so that it could be altered to emit
13 something other than python if need be. The focus this time is on
14 building a simple distributable batch of code that only requires the
15 python lxml package when it builds the python. After that, the only
16 requirement is the BitVector package by Avi Kak.
17
18 @see: NMEA strings at U{http://gpsd.berlios.de/NMEA.txt}
19 @see: Wikipedia at U{http://en.wikipedia.org/wiki/Automatic_Identification_System}
20
21 @author: Kurt Schwehr U{email<mailto:kurt@ccom.unh.edu>} U{homepage<http://schwehr.org>}
22 @requires: U{Python<http://python.org/>} >= 2.4
23 @requires: U{lxml<http://codespeak.net/lxml/>} >= 1.1.2
24 @requires: U{libxml2<http://codespeak.net/lxml/>} for xmllint
25 @requires: U{BitVector<http://cobweb.ecn.purdue.edu/~kak/dist/>} >= 1.2
26 @requires: U{epydoc<http://epydoc.sourceforge.net>} >= 3.0alpha3
27 @version: '''+__version__+'''
28
29 @todo: bit stuffing
30
31 @license: GPL version 2
32 @copyright: (C) 2006
33
34 @undocumented: __doc__
35 @undocumented: __version__ __author__ __url__
36
37 '''
38