zephyr/scripts/meta/west/__main__.py
Marti Bolivar 94be858f31 scripts: west: sync with upstream
This brings in content from commits in the upstream West
repository. Since both the version here and upstream have diverged,
this synchronizes them again.

Signed-off-by: Marti Bolivar <marti@foundries.io>
2018-07-30 17:56:21 -04:00

17 lines
300 B
Python

# Copyright 2018 Open Source Foundries Limited.
#
# SPDX-License-Identifier: Apache-2.0
'''Zephyr RTOS meta-tool (west)
Main entry point for running this package as a module, e.g.:
py -3 west # Windows
python3 -m west # Unix
'''
from .main import main
if __name__ == '__main__':
main()