We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pydist.py in Wheel.entrypoints, line 124:
pydist.py
Wheel.entrypoints
name, path = config.items("console_scripts")[0]
That should be a loop, because packages can have multiple entry points.
(The example that led me to dig into this was https://pypi.org/project/robotframework/ which has three, robot, rebot, and libdoc - and if you wheel2deb the deb from https://pypi.org/project/robotframework/6.0.2/ in particular, you only end up with libdoc, which is the first entry in the entry_points.txt.)
robot
rebot
libdoc
entry_points.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pydist.py
inWheel.entrypoints
, line 124:That should be a loop, because packages can have multiple entry points.
(The example that led me to dig into this was https://pypi.org/project/robotframework/ which has three,
robot
,rebot
, andlibdoc
- and if you wheel2deb the deb from https://pypi.org/project/robotframework/6.0.2/ in particular, you only end up with libdoc, which is the first entry in theentry_points.txt
.)The text was updated successfully, but these errors were encountered: