| Type | Name and description |
|---|---|
static void |
buildPexFile(org.gradle.api.Project project, java.io.File pexCache, java.lang.String pexName, java.io.File repoDir, java.lang.String pexShebang, java.lang.String entryPoint)Build a pex file. |
static java.util.List<java.lang.String> |
pipFreeze(org.gradle.api.Project project)Run ``pip freeze`` and return the results. |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Build a pex file.
project - The project to run pex within.pexCache - The directory to use for pex's build cache.pexName - The name to use for the output pex file.repoDir - The repository (usually a wheel-cache) to use to build the pex file.pexShebang - The explicit shebang line to be prepended to the resulting pex file.entryPoint - The entry point to burn into the pex file, or null if no entry point should be used.Run ``pip freeze`` and return the results. TODO: Make this configurable with other users 'special cases'
project - The project to run ``pip freeze`` within.