Python Library GEO
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

__init__.py 791B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. """
  4. geo (Geographic)
  5. ================
  6. **Author:**
  7. * Dirk Alders <sudo-dirk@mount-mockery.de>
  8. **Description:**
  9. This Module support functionalities around geographic issues.
  10. **Submodules:**
  11. * :mod:`geo.gps`
  12. * :mod:`geo.osm`
  13. * :mod:`geo.sun`
  14. **Unittest:**
  15. See also the :download:`unittest <../../geo/_testresults_/unittest.pdf>` documentation.
  16. """
  17. __DEPENDENCIES__ = []
  18. from geo import gps
  19. from geo import osm
  20. from geo import sun
  21. logger_name = 'GEO'
  22. __DESCRIPTION__ = """The Module {\\tt %s} is designed to \\ldots.
  23. For more Information read the sphinx documentation.""" % __name__.replace('_', '\_')
  24. """The Module Description"""
  25. __INTERPRETER__ = (2, )
  26. """The Tested Interpreter-Versions"""
  27. __all__ = ['gps', 'osm', 'sun']