mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-21 04:53:47 +08:00
bf659453aa
* move-fast: Hands on wheel monitoring: Implementation according to r079r4e regulation * move-fast: VisionTurnController Implementation & UI prerequisites * move-fast: LiveMapData: Implementation & UI prerequisites * add dependencies * move-fast: SpeedLimitControl: Implementation & UI prerequisites * move-fast: TurnSpeedController: Implementation & UI prerequisites * move-fast: Debug: Tap on Ui to capture snapshot of debug data & UI prerequisites * Debug UI: Toggle to display debug UI elements & UI prerequisites
23 lines
453 B
Python
23 lines
453 B
Python
__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.6"
|
|
|
|
__author__ = "PhiBo (DinoTools)"
|
|
__email__ = ""
|
|
|
|
__license__ = "MIT"
|
|
__copyright__ = "Copyright 2014-2021 %s" % __author__
|