Does setuptools ignore dependencies mentioned in console_scripts and makes them available anyway? #2927
-
Hi everyone, i recently encountered a weird behavior when installing a package, which uses I already asked it on SO here and found today an older question, describing the same behavior. Is this an issue in setuptools? Does the Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
So basically when having a Right now this is not a clean way of how it should behave. At least FallenWarrior from SO and myself expected that scripts are not made available in console when not specifying the extra to be installed. Maybe this should be made as an issue here or on pip.. |
Beta Was this translation helpful? Give feedback.
-
Hi guys, according to the entry-points specification
I have the impression that is the reason why |
Beta Was this translation helpful? Give feedback.
Hi guys, according to the entry-points specification
extra
is deprecated in that context:I have the impression that is the reason why
pip
go ahead and creates the script wrapper anyway even if the package was not installed with the extra.