Add setup.py with console_script to allow for shell command installation #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Thanks for the release! I expect to use it in a range of projects and I'm lazy, so I took the liberty of writing a simple setup.py to allow for a pip install.
It's quite minimal and I got the information from the source (version and license), please let me know if something is wrong.
I tried not to touch any core code, but I had to add a
__main__and amain()function inscare.pyso I could call it from the console. I hope that's not an issue.