diff options
| author | Ben Sima <ben@bensima.com> | 2025-09-18 11:42:17 -0400 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-09-18 11:42:17 -0400 |
| commit | f8d26da7c054c0a4c89ab12993e00f74ea9260a1 (patch) | |
| tree | 3d73580d38a1296c512433b32fa43ada0dfa6d10 /whisper-dictate/setup.py | |
| parent | 1c6de10ac4f9808e3a480ed7b7b11577d13ad005 (diff) | |
Diffstat (limited to 'whisper-dictate/setup.py')
| -rw-r--r-- | whisper-dictate/setup.py | 17 |
1 files changed, 17 insertions, 0 deletions
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", + ], +) |
