12345678910111213141516171819202122232425262728293031323334353637 |
- #!/usr/bin/env python
- # -*- coding: UTF-8 -*-
- """
- geo (Geographic)
- ================
-
- **Author:**
-
- * Dirk Alders <sudo-dirk@mount-mockery.de>
-
- **Description:**
-
- This Module support functionalities around geographic issues.
-
- **Submodules:**
-
- * :mod:`geo.gps`
- * :mod:`geo.osm`
- * :mod:`geo.sun`
-
- **Unittest:**
-
- See also the :download:`unittest <../../geo/_testresults_/unittest.pdf>` documentation.
- """
- __DEPENDENCIES__ = []
-
- from geo import gps
- from geo import osm
- from geo import sun
-
- __DESCRIPTION__ = """The Module {\\tt %s} is designed to \\ldots.
- For more Information read the sphinx documentation.""" % __name__.replace('_', '\_')
- """The Module Description"""
- __INTERPRETER__ = (2, )
- """The Tested Interpreter-Versions"""
-
- __all__ = ['gps', 'osm', 'sun']
|