setup.py used to define entry points like this:
entry_points={
'console_scripts': [
'cursive = cursive.tools.cmd:cursive_command',
],
},
How to do it for pipenv? There seems to be no canonical way to defined an entry point with Pipenv?
I've found that setuptools suggest that a setup.cfg file should be created, like this:
[options.entry_points]
console_scripts =
cursive = cursive.tools.cmd:cursive_command
but then it never gets "intalled": that is, no cursive executable is created.
So, how to create entry points with Pipenv?