Axel Andersson 816553f1bc Added powertrain-build entrypoint
The entrypoint will make it easier to install powertrain-build to an
isolated venv without having to call python -m powertrain_build.

Change-Id: I3850c97d17707f9bc03640bd1d997508637d97ba
2024-10-30 10:33:42 +01:00

7 lines
111 B
Python

import sys
from powertrain_build.cli import main
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))