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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # 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:
I confirm this issue bothers me as well with different packages (freesas for example)
Sorry, something went wrong.
Enable several entry point per debian packages
420a402
close upciti#61
Successfully merging a pull request may close this issue.
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: