I'm running into the following problem with python whl packages:
I have a package with a single entrypoint defined in my setup.py.
When I run pip install .
, it installs the package AND the entry point wrapper properly.
When I run python setup.py bdist_wheel
followed by pip install thing.whl
, it only install the package, but not the entrypoint.
How do I install the entrypoint properly from the created wheel package?
PS: When I unzip the wheel package, I do find "entrypoints.txt" with the expected entry. It just doesn't get installed in the environment bin.