type: add PythonPkg types for requirements-based packages

Signed-off-by: Alfredo Deza <adeza@anchore.com>
This commit is contained in:
Alfredo Deza 2020-07-21 14:27:07 -04:00
parent f8a2b7a626
commit 50eae46d37

View File

@ -9,6 +9,7 @@ const (
//PacmanPkg
RpmPkg
WheelPkg
PythonRequirementsPkg
JavaPkg
JenkinsPluginPkg
)
@ -24,6 +25,7 @@ var typeStr = []string{
//"pacman",
"rpm",
"wheel",
"python-requirements",
"java-archive",
"jenkins-plugin",
}
@ -36,6 +38,7 @@ var AllPkgs = []Type{
//PacmanPkg,
RpmPkg,
WheelPkg,
PythonRequirementsPkg,
JavaPkg,
JenkinsPluginPkg,
}