Skip to content

Commit

Permalink
Create python_whl package for linux (kevoreilly#2106)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangchen96 authored May 7, 2024
1 parent 961514c commit be90339
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions analyzer/linux/modules/packages/python_whl.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit be90339

Please sign in to comment.