Generate Python executable files via PEX using info from Pipfile
Project description
pipenv-pex
Quickly create PEX files out of your Pipenv projects using this one simple command!
PEX files are an expansion upon zipapps. You can bundle your application's modules along with their dependencies into one file, executable using a Python interpreter.
Installation
Using the lovely pipx:
pipx install pipenv-pex
Usage
cd project-with-pipfile
pipenv-pex --entry-point "epic_project:main"
python ./project-with-pipfile.pex
--entry-point
argument should have the form “pkg.mod:fn”, where “pkg.mod” is a package/module in the archive, and “fn” is a callable in the given module. (taken fromhere)- All parameters except
--exclude
are passed directly to PEX,--entry-point
being one of them.
Why not use pex directly?
Since pipenx-pex
piggybacks on the informaton in your Pipfile
, some automations become possible:
- Dependencies are fetched from your Pipfile, so you don't have to update your Makefile each time you change a dependency in your Pipfile
- (unrelated to pipenv actually) Irrelevant noise files are ignored when bundling the modules (such as .mypy_cache, __pycache__ etc.), saving a few precious MBs :) additional files and directories can be added to this list via the
--exclude
parameter.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pipenv-pex-0.2.2.tar.gz
(4.2 kB
view hashes)
Built Distribution
pipenv_pex-0.2.2-py3-none-any.whl
(16.5 kB
view hashes)
Close
Hashes for pipenv_pex-0.2.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | afc2add9ec16aa347227f251d2e02dd49a782ea1e10c2bc663f0971f124c95e3 |
|
MD5 | 283c43d958eb4bc97bf419141bc63ea1 |
|
BLAKE2b-256 | f7b683afcc3509c92be89d80352dc3d16ad38bcc33905b8874c5381d54bf65bc |