There are basically two ways to install Python console scripts to my path by setup.py:
setup.py
setup( ... entry_points = { \'console_scr
One more difference is that when using console_scripts, my module's init file was run. When just using scripts, the module init was not run, only the script was run.