diff --git a/analyzer/linux/modules/packages/python_whl.py b/analyzer/linux/modules/packages/python_whl.py new file mode 100644 index 00000000000..1e2be2c420b --- /dev/null +++ b/analyzer/linux/modules/packages/python_whl.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python +# Copyright (C) 2024 xiangchen96 +# This software may be modified and distributed under the terms +# of the MIT license. See the LICENSE file for details. + +from lib.core.packages import Package + + +class Python_whl(Package): + """Python wheel analysis package.""" + + def prepare(self): + self.args = [self.target] + self.args + self.target = "/usr/bin/python -m pip install"