console_scripts
console_scripts
entry points are used by
setuptools and
pip to create & install a project's command-line
programs. If a project defines a console_scripts
entry point named foo
that points to modulename:funcname
, then when the project is installed,
the installer will also create & install an executable named foo
that
invokes funcname
in modulename
when run. See the setuptools
documentation for more
information.