-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Add vanity CLI #56
Comments
Hey @cthoyt! The functionality you are describing sounds like a great. Thanks for offering to do this, I'd be happy to review a PR 😄 |
I have some experience with CLIs, as well as packaging and releasing stuff on PyPi. I don't know how much extra bandwidth I have, but this is something I could possibly help with. @cthoyt What is a vanity CLI? Is that just a figure of speech, or a particular type of CLI? |
This is when you use Python entrypoints to make a nice CLI command available in the shell like more info on how I think about this on my blog: https://cthoyt.com/2020/06/11/click.html |
Ah ok, that's pretty cool. I'll give that a read. |
If the
main.py
were included in the source code hierarchy, the python entrypoints in setuptools could be used ot make a vanity cli calledomop2obo
along with installation of the code. This would make it much more extensible for others since they wouldn't have to know where the code itself was. Would you be willing to accept a PR for this?The text was updated successfully, but these errors were encountered: