From aa82e356eac61f0ef7ec741edffe564ddd1f63fa Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 11 Feb 2025 12:18:56 -0500 Subject: [PATCH] Fix setup.py installation Fixes: https://github.com/redhat-et/PRAGmatic/issues/40 Signed-off-by: Daniel J Walsh --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cb0ba5a..81ff6e8 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,6 @@ description='An experimental RAG framework', long_description=open('README.md').read(), long_description_content_type='text/markdown', - url='https://github.com/redhat-et/PRAGmatic' + url='https://github.com/redhat-et/PRAGmatic', scripts=["bin/pragmatic"], )