I am having a problem with python whl packages:
I have a package with a single entry point defined in my setup.py. When I run pip install . , it correctly installs the package and shell entry point. When I run python setup.py bdist_wheel followed by pip install thing.whl , it installs only the package, but not the entry point.
How to set the entry point from the created package of wheels?
PS: When I unzip the wheel package, I find "entrypoints.txt" with the expected entry. It just does not install in the bin environment.
python pip python-wheel
AJRouvoet
source share