From f8d26da7c054c0a4c89ab12993e00f74ea9260a1 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Thu, 18 Sep 2025 11:42:17 -0400 Subject: add whisper-dictate subservice --- whisper-dictate/setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 whisper-dictate/setup.py (limited to 'whisper-dictate/setup.py') diff --git a/whisper-dictate/setup.py b/whisper-dictate/setup.py new file mode 100644 index 0000000..516c0ca --- /dev/null +++ b/whisper-dictate/setup.py @@ -0,0 +1,17 @@ +# setup.py +from setuptools import setup, find_packages + +setup( + name="whisper-dictate", + version="0.1.0", + py_modules=["whisper_dictate_daemon"], + entry_points={ + "console_scripts": [ + "whisper-dictate-daemon=whisper_dictate_daemon:main", + ], + }, + install_requires=[ + "PyGObject", + "openai-whisper", + ], +) -- cgit v1.2.3