abaldwin88 / roamer

The Plain Text File Manager
MIT License
607 stars 15 forks source link

use click to manage cli #33

Closed sujaymansingh closed 4 years ago

sujaymansingh commented 4 years ago

Using click will give us a lot of functionality around cli args, including the original problem described in #32

$ roamer --not-a-valid-flag
Usage: roamer [OPTIONS]
Try "roamer --help" for help.

Error: no such option: --not-a-valid-flag

Note: because of the dependency, I switched to using setuptools so install_require could be used.

sujaymansingh commented 4 years ago

Thanks for merging @abaldwin88 Also, thanks again for roamer, I find it really useful!