blob: f74732032e9b53db59af2d2bdd11eb8598472a6a [file] [log] [blame]
Mike Frysingerdc4adf72021-02-12 15:01:55 -05001#!/usr/bin/env vpython3
2# Copyright 2021 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# NB: Do not add a ton of wheels here as it's shared among many programs.
7# Only list significant ones widely used by chromite.lib modules.
8
9# [VPYTHON:BEGIN]
10# python_version: "3.8"
11#
12# wheel: <
13# name: "infra/python/wheels/psutil/${vpython_platform}"
14# version: "version:5.7.2"
15# >
16# wheel: <
17# name: "infra/python/wheels/pyasn1-py2_py3"
18# version: "version:0.2.3"
19# >
20# wheel: <
21# name: "infra/python/wheels/pyasn1_modules-py2_py3"
22# version: "version:0.0.8"
23# >
24# wheel: <
25# name: "infra/python/wheels/pyyaml-py3"
26# version: "version:5.3.1"
27# >
28# wheel: <
29# name: "infra/python/wheels/rsa-py2_py3"
30# version: "version:3.4.2"
31# >
32# wheel: <
33# name: "infra/python/wheels/six-py2_py3"
34# version: "version:1.15.0"
35# >
36# [VPYTHON:END]
37
38"""Wrapper around chromite executable scripts that use vpython."""
39
40import wrapper3
41
42
43def main():
44 wrapper3.DoMain()
45
46
47if __name__ == '__main__':
48 main()