We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
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?The text was updated successfully, but these errors were encountered: