What's the status of scripts vs entry_points?

I don’t think there’s anything formal. Scripts are not as well supported (as you discovered) and don’t work well on Windows (where .exe files are the only reliable way of implementing a new command - see here for details). So I’d say that entry points are the better cross-platform solution.

1 Like