JohnDMcMaster / usbrply

Replay USB messages from Wireshark (.cap) files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Windows pip installation creates just a python file with no extension

humdogm opened this issue · comments

Other packages that I pip install on Windows such as pipdeptree, pyserial, and wheel create .exe files in my Scripts folder. The usbrply package only creates a python script which you have to run with python.exe anyways, which isn't very useful if users add their Scripts/ folder to their path.

Rather than building the file manually in setup.py, it would be better to use the entry_points argument in setup() with the 'console_scripts' entrypoint to register script interfaces to be built automatically.