Closed llimeht closed 2 years ago
setup.py creates a console script entry_point into the module called sasview pointing at sasdata.loader.Loader:load.
setup.py
sasview
sasdata.loader.Loader:load
sasdata.dataloader.Loader:load
I'm not sure that this will ever have a command line interface at all, unless it one day grows a scriptable file format conversion utility.
Perhaps the entry_points kwarg to setup should just be deleted?
entry_points
setup
setup.py
creates a console script entry_point into the module calledsasview
pointing atsasdata.loader.Loader:load
.sasview
name is problematic, since that will still be used by the sasview project itselfsasdata.loader.Loader:load
doesn't exist, perhaps was intended to besasdata.dataloader.Loader:load
?I'm not sure that this will ever have a command line interface at all, unless it one day grows a scriptable file format conversion utility.
Perhaps the
entry_points
kwarg tosetup
should just be deleted?