Is there a Pants built-in way to generate a virtua...
# development
m
Is there a Pants built-in way to generate a virtualenv package distribution containing all code+dependencies of a project? TIA Context: that's the deployment requirement for Python on EMR serverless
Alternatives that would also work are .zip or .egg but so far I experienced the Python .zip produced by Pants to only contain my own code and not the dependencies
h
Sounds like you want a Pex?
m
Maybe I do, will check that out, thanks!