You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
22 lines
453 B
__all__ = [
|
|
"__author__",
|
|
"__copyright__",
|
|
"__email__",
|
|
"__license__",
|
|
"__summary__",
|
|
"__title__",
|
|
"__uri__",
|
|
"__version__",
|
|
]
|
|
|
|
__title__ = "overpy"
|
|
__summary__ = "Python Wrapper to access the OpenStreepMap Overpass API"
|
|
__uri__ = "https://github.com/DinoTools/python-overpy"
|
|
|
|
__version__ = "0.4"
|
|
|
|
__author__ = "PhiBo (DinoTools)"
|
|
__email__ = ""
|
|
|
|
__license__ = "MIT"
|
|
__copyright__ = "Copyright 2014-2016 %s" % __author__
|
|
|