From a67240291ac951dff257250eb08d768b9d0f745f Mon Sep 17 00:00:00 2001 From: justin-f-perez Date: Sun, 20 Mar 2022 03:42:39 -0500 Subject: [PATCH] attempt to make `keep` an extra attempt to make `keep` an extra to put it on the PATH when installing via pipx/homebrew related: #425 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e2eb2c36..0c870e01c 100644 --- a/setup.py +++ b/setup.py @@ -91,8 +91,12 @@ def read(*names): url='https://github.com/gleitz/howdoi', license='MIT', packages=find_packages(), + extras_require={ + "keep": ["keep], + }, entry_points={ 'console_scripts': [ + 'keep = keep.cli:cli [keep]' 'howdoi = howdoi.howdoi:command_line_runner', ] }, @@ -104,7 +108,6 @@ def read(*names): 'requests', 'cachelib', 'appdirs', - 'keep', 'rich' ], cmdclass={